Imported Debian patch 3.0.715-1
[darkstat-debian] / Makefile.in
1 # darkstat 3
2 # copyright (c) 2001-2011 Emil Mikulic.
3 #
4 # You may use, modify and redistribute this file under the terms of the
5 # GNU General Public License version 2. (see COPYING.GPL)
6
7 CC = @CC@
8 CFLAGS = @CFLAGS@
9 CPP = @CPP@
10 CPPFLAGS = @CPPFLAGS@
11 INSTALL = @INSTALL@
12 LDFLAGS = @LDFLAGS@
13 LIBS = @LIBS@
14
15 HOSTCC ?= $(CC)
16 HOSTCFLAGS ?= $(CFLAGS)
17
18 prefix = @prefix@
19 exec_prefix = @exec_prefix@
20 sbindir = @sbindir@
21 datarootdir = @datarootdir@
22 mandir = @mandir@
23
24 # Optimizations FIXME: dead code. push into autoconf?
25 #CPPFLAGS += -D__OPTIMIZE__
26
27 SRCS = \
28 acct.c \
29 addr.c \
30 bsd.c \
31 cap.c \
32 conv.c \
33 darkstat.c \
34 daylog.c \
35 db.c \
36 decode.c \
37 dns.c \
38 err.c \
39 graph_db.c \
40 hosts_db.c \
41 hosts_sort.c \
42 html.c \
43 http.c \
44 localip.c \
45 ncache.c \
46 pidfile.c \
47 str.c
48
49 OBJS = $(SRCS:%.c=%.o)
50
51 STATICHS = \
52 stylecss.h \
53 graphjs.h
54
55 all: darkstat
56
57 darkstat: $(OBJS)
58 $(AM_V_LINK)
59 $(AM_V_at)$(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
60
61 .c.o:
62 $(AM_V_CC)
63 $(AM_V_at)$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
64
65 clean:
66 rm -f darkstat
67 rm -f $(OBJS)
68 rm -f $(STATICHS)
69 rm -f c-ify
70
71 depend: config.status $(STATICHS)
72 cp Makefile.in Makefile.in.old
73 sed '/^# Automatically generated dependencies$$/,$$d' \
74 <Makefile.in.old >Makefile.in
75 echo "# Automatically generated dependencies" >>Makefile.in
76 $(CPP) $(CPPFLAGS) -MM $(SRCS) >>Makefile.in
77 ./config.status
78 rm -f Makefile.in.old
79
80 show-dep:
81 @echo $(CPP) $(CPPFLAGS) -MM $(SRCS)
82
83 graphjs.h: static/graph.js
84 $(AM_V_CIFY)
85 $(AM_V_at)./c-ify graph_js <static/graph.js >$@
86
87 stylecss.h: static/style.css
88 $(AM_V_CIFY)
89 $(AM_V_at)./c-ify style_css <static/style.css >$@
90
91 $(STATICHS): c-ify
92 c-ify: static/c-ify.c
93 $(AM_V_HOSTCC)
94 $(AM_V_at)$(HOSTCC) $(HOSTCFLAGS) static/c-ify.c -o $@
95
96 install: darkstat
97 $(INSTALL) -d $(DESTDIR)$(sbindir)
98 $(INSTALL) -m 555 darkstat $(DESTDIR)$(sbindir)
99 $(INSTALL) -d $(DESTDIR)$(mandir)/man8
100 $(INSTALL) -m 444 darkstat.8 $(DESTDIR)$(mandir)/man8
101
102 .PHONY: all install clean depend show-dep
103
104 # silent-rules
105 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
106 AM_V_CC = $(am__v_CC_$(V))
107 am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
108 am__v_CC_0 = @echo " CC " $@;
109 AM_V_LINK = $(am__v_LINK_$(V))
110 am__v_LINK_ = $(am__v_LINK_$(AM_DEFAULT_VERBOSITY))
111 am__v_LINK_0 = @echo " LINK " $@;
112 AM_V_HOSTCC = $(am__v_HOSTCC_$(V))
113 am__v_HOSTCC_ = $(am__v_HOSTCC_$(AM_DEFAULT_VERBOSITY))
114 am__v_HOSTCC_0 = @echo " HOSTCC" $@;
115 AM_V_CIFY = $(am__v_CIFY_$(V))
116 am__v_CIFY_ = $(am__v_CIFY_$(AM_DEFAULT_VERBOSITY))
117 am__v_CIFY_0 = @echo " C-IFY " $@;
118 AM_V_at = $(am__v_at_$(V))
119 am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
120 am__v_at_0 = @
121
122 # Automatically generated dependencies
123 acct.o: acct.c acct.h decode.h addr.h conv.h daylog.h graph_db.h err.h \
124 cdefs.h hosts_db.h localip.h now.h opt.h
125 addr.o: addr.c addr.h
126 bsd.o: bsd.c bsd.h config.h cdefs.h
127 cap.o: cap.c cdefs.h cap.h config.h conv.h decode.h addr.h hosts_db.h \
128 localip.h opt.h err.h
129 conv.o: conv.c conv.h err.h cdefs.h
130 darkstat.o: darkstat.c acct.h cap.h cdefs.h config.h conv.h daylog.h \
131 graph_db.h db.h dns.h err.h http.h hosts_db.h addr.h localip.h ncache.h \
132 pidfile.h now.h
133 daylog.o: daylog.c err.h cdefs.h daylog.h graph_db.h str.h now.h
134 db.o: db.c cdefs.h err.h hosts_db.h addr.h graph_db.h db.h
135 decode.o: decode.c cdefs.h acct.h cap.h config.h decode.h addr.h err.h \
136 opt.h
137 dns.o: dns.c cdefs.h conv.h decode.h addr.h dns.h err.h hosts_db.h \
138 queue.h str.h tree.h bsd.h config.h
139 err.o: err.c cdefs.h err.h opt.h pidfile.h bsd.h config.h
140 graph_db.o: graph_db.c cap.h conv.h db.h acct.h err.h cdefs.h str.h \
141 html.h graph_db.h now.h opt.h
142 hosts_db.o: hosts_db.c cdefs.h conv.h decode.h addr.h dns.h err.h \
143 hosts_db.h db.h html.h ncache.h now.h opt.h str.h
144 hosts_sort.o: hosts_sort.c cdefs.h err.h hosts_db.h addr.h
145 html.o: html.c config.h str.h html.h opt.h
146 http.o: http.c cdefs.h config.h conv.h err.h graph_db.h hosts_db.h addr.h \
147 http.h now.h queue.h str.h stylecss.h graphjs.h
148 localip.o: localip.c addr.h config.h err.h cdefs.h localip.h bsd.h
149 ncache.o: ncache.c conv.h err.h cdefs.h ncache.h tree.h bsd.h config.h
150 pidfile.o: pidfile.c err.h cdefs.h str.h pidfile.h
151 str.o: str.c conv.h err.h cdefs.h str.h