# darkstat 3 # copyright (c) 2001-2011 Emil Mikulic. # # You may use, modify and redistribute this file under the terms of the # GNU General Public License version 2. (see COPYING.GPL) CC = @CC@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ INSTALL = @INSTALL@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ HOSTCC ?= $(CC) HOSTCFLAGS ?= $(CFLAGS) prefix = @prefix@ exec_prefix = @exec_prefix@ sbindir = @sbindir@ datarootdir = @datarootdir@ mandir = @mandir@ # Optimizations FIXME: dead code. push into autoconf? #CPPFLAGS += -D__OPTIMIZE__ SRCS = \ acct.c \ addr.c \ cap.c \ conv.c \ darkstat.c \ daylog.c \ db.c \ decode.c \ dns.c \ err.c \ graph_db.c \ hosts_db.c \ hosts_sort.c \ html.c \ http.c \ localip.c \ ncache.c \ pidfile.c \ str.c OBJS = $(SRCS:%.c=%.o) STATICHS = \ stylecss.h \ graphjs.h all: darkstat darkstat: $(OBJS) @echo "===> Linking $@" @$(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) -o $@ .c.o: @echo "===> Compiling $@" @$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ clean: rm -f darkstat rm -f $(OBJS) rm -f $(STATICHS) rm -f c-ify depend: config.status $(STATICHS) cp Makefile.in Makefile.in.old sed '/^# Automatically generated dependencies$$/,$$d' \ Makefile.in echo "# Automatically generated dependencies" >>Makefile.in $(CPP) $(CPPFLAGS) -MM $(SRCS) >>Makefile.in ./config.status rm -f Makefile.in.old show-dep: @echo $(CPP) $(CPPFLAGS) -MM $(SRCS) # Statics: (FIXME?) graphjs.h: static/graph.js c-ify ./c-ify graph_js $@ stylecss.h: static/style.css c-ify ./c-ify style_css $@ c-ify: static/c-ify.c @echo "==> Compiling $@" @$(HOSTCC) $(HOSTCFLAGS) static/c-ify.c -o $@ install: darkstat $(INSTALL) -d $(DESTDIR)$(sbindir) $(INSTALL) -m 555 darkstat $(DESTDIR)$(sbindir) $(INSTALL) -d $(DESTDIR)$(mandir)/man8 $(INSTALL) -m 444 darkstat.8 $(DESTDIR)$(mandir)/man8 .PHONY: all install clean depend show-dep # Automatically generated dependencies acct.o: acct.c acct.h decode.h addr.h conv.h config.h daylog.h graph_db.h \ err.h cdefs.h hosts_db.h localip.h now.h opt.h addr.o: addr.c addr.h cap.o: cap.c cdefs.h cap.h config.h conv.h decode.h addr.h hosts_db.h \ localip.h opt.h err.h conv.o: conv.c cdefs.h config.h conv.h err.h darkstat.o: darkstat.c acct.h cap.h cdefs.h config.h conv.h daylog.h \ graph_db.h db.h dns.h err.h http.h hosts_db.h addr.h localip.h ncache.h \ pidfile.h now.h daylog.o: daylog.c err.h cdefs.h daylog.h graph_db.h str.h now.h db.o: db.c cdefs.h err.h hosts_db.h addr.h graph_db.h db.h decode.o: decode.c cdefs.h acct.h cap.h config.h decode.h addr.h err.h \ opt.h dns.o: dns.c cdefs.h conv.h config.h decode.h addr.h dns.h err.h \ hosts_db.h queue.h str.h tree.h err.o: err.c cdefs.h conv.h config.h err.h opt.h pidfile.h graph_db.o: graph_db.c cap.h conv.h config.h db.h acct.h err.h cdefs.h \ str.h html.h graph_db.h now.h opt.h hosts_db.o: hosts_db.c cdefs.h conv.h config.h decode.h addr.h dns.h \ err.h hosts_db.h db.h html.h ncache.h now.h opt.h str.h hosts_sort.o: hosts_sort.c cdefs.h err.h hosts_db.h addr.h html.o: html.c config.h str.h html.h opt.h http.o: http.c cdefs.h config.h conv.h err.h graph_db.h hosts_db.h addr.h \ http.h now.h queue.h str.h stylecss.h graphjs.h localip.o: localip.c addr.h conv.h config.h err.h cdefs.h localip.h ncache.o: ncache.c conv.h config.h err.h cdefs.h ncache.h tree.h pidfile.o: pidfile.c err.h cdefs.h str.h pidfile.h str.o: str.c conv.h config.h err.h cdefs.h str.h