"Fossies" - the Fresh Open Source Software Archive  

Source code changes of the file "Makefile.in" between
darkstat-3.0.719.tar.gz and darkstat-3.0.721.tar.gz

About: darkstat is a network traffic analyzer (reports over HTTP).

Makefile.in  (darkstat-3.0.719):Makefile.in  (darkstat-3.0.721)
# vim:set ts=8 sw=8 sts=8 noet: # vim:set ts=8 sw=8 sts=8 noet:
# #
# darkstat 3 # darkstat 3
# copyright (c) 2001-2014 Emil Mikulic. # copyright (c) 2001-2016 Emil Mikulic.
# #
# You may use, modify and redistribute this file under the terms of the # You may use, modify and redistribute this file under the terms of the
# GNU General Public License version 2. (see COPYING.GPL) # GNU General Public License version 2. (see COPYING.GPL)
CC = @CC@ CC = @CC@
CFLAGS = @CFLAGS@ CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@ CPPFLAGS = @CPPFLAGS@
INSTALL = @INSTALL@ INSTALL = @INSTALL@
LDFLAGS = @LDFLAGS@ LDFLAGS = @LDFLAGS@
LIBS = @LIBS@ LIBS = @LIBS@
HOSTCC ?= $(CC) HOSTCC ?= $(CC)
HOSTCFLAGS ?= $(CFLAGS) HOSTCFLAGS ?= $(CFLAGS)
prefix = @prefix@ prefix = @prefix@
exec_prefix = @exec_prefix@ exec_prefix = @exec_prefix@
skipping to change at line 52 skipping to change at line 51
http.c \ http.c \
localip.c \ localip.c \
ncache.c \ ncache.c \
now.c \ now.c \
pidfile.c \ pidfile.c \
str.c str.c
OBJS = $(SRCS:%.c=%.o) OBJS = $(SRCS:%.c=%.o)
STATICHS = \ STATICHS = \
favicon.h \
stylecss.h \ stylecss.h \
graphjs.h graphjs.h
all: darkstat all: darkstat
darkstat: $(OBJS) darkstat: $(OBJS)
$(AM_V_LINK) $(AM_V_LINK)
$(AM_V_at)$(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) -o $@ $(AM_V_at)$(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
.c.o: .c.o:
$(AM_V_CC) $(AM_V_CC)
$(AM_V_at)$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ $(AM_V_at)$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
clean: clean:
rm -f darkstat rm -f darkstat
rm -f $(OBJS) rm -f $(OBJS)
rm -f $(STATICHS) rm -f $(STATICHS)
rm -f c-ify rm -f hex-ify c-ify
depend: config.status $(STATICHS) depend: config.status $(STATICHS)
cp Makefile.in Makefile.in.old cp Makefile.in Makefile.in.old
sed '/^# Automatically generated dependencies$$/,$$d' \ sed '/^# Automatically generated dependencies$$/,$$d' \
<Makefile.in.old >Makefile.in <Makefile.in.old >Makefile.in
echo "# Automatically generated dependencies" >>Makefile.in echo "# Automatically generated dependencies" >>Makefile.in
$(CPP) $(CPPFLAGS) -MM $(SRCS) >>Makefile.in $(CC) $(CPPFLAGS) -MM $(SRCS) >>Makefile.in
./config.status ./config.status
rm -f Makefile.in.old rm -f Makefile.in.old
graphjs.h: static/graph.js favicon.h: static/favicon.png hex-ify
$(AM_V_HEXIFY)
$(AM_V_at)./hex-ify favicon_png <static/favicon.png >$@
graphjs.h: static/graph.js c-ify
$(AM_V_CIFY) $(AM_V_CIFY)
$(AM_V_at)./c-ify graph_js <static/graph.js >$@ $(AM_V_at)./c-ify graph_js <static/graph.js >$@
stylecss.h: static/style.css stylecss.h: static/style.css c-ify
$(AM_V_CIFY) $(AM_V_CIFY)
$(AM_V_at)./c-ify style_css <static/style.css >$@ $(AM_V_at)./c-ify style_css <static/style.css >$@
$(STATICHS): c-ify hex-ify: static/hex-ify.c
$(AM_V_HOSTCC)
$(AM_V_at)$(HOSTCC) $(HOSTCFLAGS) static/hex-ify.c -o $@
c-ify: static/c-ify.c c-ify: static/c-ify.c
$(AM_V_HOSTCC) $(AM_V_HOSTCC)
$(AM_V_at)$(HOSTCC) $(HOSTCFLAGS) static/c-ify.c -o $@ $(AM_V_at)$(HOSTCC) $(HOSTCFLAGS) static/c-ify.c -o $@
install: darkstat install: darkstat
$(INSTALL) -d $(DESTDIR)$(sbindir) $(INSTALL) -d $(DESTDIR)$(sbindir)
$(INSTALL) -m 555 darkstat $(DESTDIR)$(sbindir) $(INSTALL) -m 555 darkstat $(DESTDIR)$(sbindir)
$(INSTALL) -d $(DESTDIR)$(mandir)/man8 $(INSTALL) -d $(DESTDIR)$(mandir)/man8
$(INSTALL) -m 444 darkstat.8 $(DESTDIR)$(mandir)/man8 $(INSTALL) -m 444 darkstat.8 $(DESTDIR)$(mandir)/man8
skipping to change at line 115 skipping to change at line 122
am__v_CC_0 = @echo " CC " $@; am__v_CC_0 = @echo " CC " $@;
AM_V_LINK = $(am__v_LINK_$(V)) AM_V_LINK = $(am__v_LINK_$(V))
am__v_LINK_ = $(am__v_LINK_$(AM_DEFAULT_VERBOSITY)) am__v_LINK_ = $(am__v_LINK_$(AM_DEFAULT_VERBOSITY))
am__v_LINK_0 = @echo " LINK " $@; am__v_LINK_0 = @echo " LINK " $@;
AM_V_HOSTCC = $(am__v_HOSTCC_$(V)) AM_V_HOSTCC = $(am__v_HOSTCC_$(V))
am__v_HOSTCC_ = $(am__v_HOSTCC_$(AM_DEFAULT_VERBOSITY)) am__v_HOSTCC_ = $(am__v_HOSTCC_$(AM_DEFAULT_VERBOSITY))
am__v_HOSTCC_0 = @echo " HOSTCC" $@; am__v_HOSTCC_0 = @echo " HOSTCC" $@;
AM_V_CIFY = $(am__v_CIFY_$(V)) AM_V_CIFY = $(am__v_CIFY_$(V))
am__v_CIFY_ = $(am__v_CIFY_$(AM_DEFAULT_VERBOSITY)) am__v_CIFY_ = $(am__v_CIFY_$(AM_DEFAULT_VERBOSITY))
am__v_CIFY_0 = @echo " C-IFY " $@; am__v_CIFY_0 = @echo " C-IFY " $@;
AM_V_HEXIFY = $(am__v_HEXIFY_$(V))
am__v_HEXIFY_ = $(am__v_HEXIFY_$(AM_DEFAULT_VERBOSITY))
am__v_HEXIFY_0 = @echo " HEX-IFY " $@;
AM_V_at = $(am__v_at_$(V)) AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY)) am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @ am__v_at_0 = @
# Automatically generated dependencies # Automatically generated dependencies
acct.o: acct.c acct.h decode.h addr.h conv.h daylog.h graph_db.h err.h \ acct.o: acct.c acct.h decode.h addr.h conv.h daylog.h graph_db.h err.h \
cdefs.h hosts_db.h localip.h now.h opt.h cdefs.h hosts_db.h localip.h now.h opt.h
addr.o: addr.c addr.h addr.o: addr.c addr.h
bsd.o: bsd.c bsd.h config.h cdefs.h bsd.o: bsd.c bsd.h config.h cdefs.h
cap.o: cap.c acct.h cdefs.h cap.h config.h conv.h decode.h addr.h err.h \ cap.o: cap.c acct.h cdefs.h cap.h config.h conv.h decode.h addr.h err.h \
skipping to change at line 143 skipping to change at line 153
dns.o: dns.c cdefs.h cap.h conv.h decode.h addr.h dns.h err.h hosts_db.h \ dns.o: dns.c cdefs.h cap.h conv.h decode.h addr.h dns.h err.h hosts_db.h \
queue.h str.h tree.h bsd.h config.h queue.h str.h tree.h bsd.h config.h
err.o: err.c cdefs.h err.h opt.h pidfile.h bsd.h config.h err.o: err.c cdefs.h err.h opt.h pidfile.h bsd.h config.h
graph_db.o: graph_db.c cap.h conv.h db.h acct.h err.h cdefs.h str.h \ graph_db.o: graph_db.c cap.h conv.h db.h acct.h err.h cdefs.h str.h \
html.h graph_db.h now.h opt.h html.h graph_db.h now.h opt.h
hosts_db.o: hosts_db.c cdefs.h conv.h decode.h addr.h dns.h err.h \ hosts_db.o: hosts_db.c cdefs.h conv.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_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 hosts_sort.o: hosts_sort.c cdefs.h err.h hosts_db.h addr.h
html.o: html.c config.h str.h cdefs.h html.h opt.h html.o: html.c config.h str.h cdefs.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.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 http.h now.h queue.h str.h stylecss.h graphjs.h favicon.h
localip.o: localip.c addr.h bsd.h config.h conv.h err.h cdefs.h localip.h \ localip.o: localip.c addr.h bsd.h config.h conv.h err.h cdefs.h localip.h \
now.h now.h
ncache.o: ncache.c conv.h err.h cdefs.h ncache.h tree.h bsd.h config.h ncache.o: ncache.c conv.h err.h cdefs.h ncache.h tree.h bsd.h config.h
now.o: now.c err.h cdefs.h now.h str.h now.o: now.c err.h cdefs.h now.h str.h
pidfile.o: pidfile.c err.h cdefs.h str.h pidfile.h pidfile.o: pidfile.c err.h cdefs.h str.h pidfile.h
str.o: str.c conv.h err.h cdefs.h str.h str.o: str.c conv.h err.h cdefs.h str.h
 End of changes. 10 change blocks. 
8 lines changed or deleted 18 lines changed or added

Home  |  About  |  Features  |  All  |  Newest  |  Dox  |  Diffs  |  RSS Feeds  |  Screenshots  |  Comments  |  Imprint  |  Privacy  |  HTTP(S)