]> git.ipfire.org Git - thirdparty/sarg.git/blob - Makefile.in
Rename configure.in as configure.ac
[thirdparty/sarg.git] / Makefile.in
1 # Makefile.in for sarg
2
3 prefix=@prefix@
4 datarootdir=@datarootdir@
5 datadir=@datadir@
6 exec_prefix=@exec_prefix@
7 PACKAGE_TARNAME=@PACKAGE_TARNAME@
8 docdir = @docdir@
9 CC = @CC@
10 bindir = @bindir@
11 mandir = @mandir@
12 man1dir = $(mandir)/man1
13 sysconfdir = @sysconfdir@
14 SARGPHPDIR = @SARGPHPDIR@
15 FONTDIR = @FONTDIR@
16 IMAGEDIR = @IMAGEDIR@
17 IBINDIR = -DBINDIR=\"@bindir@\"
18 ISYSCONFDIR = -DSYSCONFDIR=\"@sysconfdir@\"
19 ISARGPHPDIR = -DSARGPHPDIR=\"@SARGPHPDIR@\"
20 IFONTDIR = -DFONTDIR=\"@FONTDIR@\"
21 IIMAGEDIR = -DIMAGEDIR=\"@IMAGEDIR@\"
22 ILOCALEDIR = -DLOCALEDIR=\"@localedir@\"
23 CFLAGS = @CFLAGS@
24 CPPFLAGS = @CPPFLAGS@
25 LDFLAGS = @LDFLAGS@
26 DEFS = $(IBINDIR) $(ISYSCONFDIR) $(IFONTDIR) $(IIMAGEDIR) $(ISARGPHPDIR) $(ILOCALEDIR) @DEFS@
27 LIBS = @LIBS@ @LIBINTL@ -lm
28 SRCDIR = .
29 VPATH = .
30 INSTALL = cp
31 XSL_MAN_STYLESHEET=@XSL_MAN_STYLESHEET@
32 XSL_HTML_STYLESHEET=@XSL_HTML_STYLESHEET@
33 EXEEXT = @EXEEXT@
34
35 INSTALL_PROGRAM = $(INSTALL)
36
37 SRCS = util.c log.c report.c topuser.c email.c sort.c html.c \
38 index.c getconf.c usage.c decomp.c ip2name.c ip2name_dns.c \
39 useragent.c exclude.c convlog.c totday.c repday.c datafile.c\
40 indexonly.c splitlog.c lastlog.c topsites.c siteuser.c css.c \
41 smartfilter.c denied.c authfail.c dichotomic.c \
42 redirector.c auth.c download.c grepday.c ip2name_exec.c \
43 dansguardian_log.c dansguardian_report.c realtime.c btree_cache.c \
44 usertab.c userinfo.c longline.c url.c fnmatch.c stringbuffer.c \
45 filelist.c readlog.c alias.c \
46 readlog_squid.c readlog_sarg.c readlog_extlog.c readlog_common.c
47
48 all: sarg
49
50 *.o: include/conf.h include/info.h include/defs.h
51
52 alias.o: include/alias.h include/stringbuffer.h
53 authfail.o: include/readlog.h
54 denied.o: include/readlog.h
55 download.o: include/readlog.h
56 filelist.o: include/stringbuffer.h
57 log.o: include/readlog.h
58 readlog.o: include/readlog.h
59 readlog_common.o: include/readlog.h
60 readlog_extlog.o: include/readlog.h
61 readlog_sarg.o: include/readlog.h
62 readlog_squid.o: include/readlog.h
63 stringbuffer.o: include/stringbuffer.h
64 userinfo.o: include/stringbuffer.h include/alias.h
65
66 OBJS = $(SRCS:.c=.o)
67
68 DISTFILES = $(SRCS) ABOUT-NLS
69
70 SUBDIRS = po
71 .PHONY: all install clean uninstall mostlyclean distclean update-po doc $(SUBDIRS)
72
73 .c.o:
74 $(CC) -c -I. $(CPPFLAGS) $(DEFS) $(CFLAGS) $<
75
76 sarg: $(OBJS)
77 $(CC) $(LDFLAGS) $(OBJS) -o $@ $(LIBS) $(LIBCRYPT)
78
79 $(SUBDIRS):
80 $(MAKE) -C $@
81
82 doc: sarg.1 sarg_manpage.html
83
84 sarg.1: sarg_manpage.xml
85 echo "Making manual page"
86 xmllint --nonet --valid --noout $<
87 xsltproc --stringparam man.output.encoding latin1 --nonet "$(XSL_MAN_STYLESHEET)" $<
88 # docbook2man.pl $<
89
90 sarg_manpage.html: sarg_manpage.xml
91 echo "Making html manual page"
92 xmllint --nonet --valid --noout $<
93 xsltproc --stringparam use.id.as.filename 1 --stringparam root.filename sarg_manpage --nonet "$(XSL_HTML_STYLESHEET)" $<
94
95 install: all install-po
96 -@if test ! -d $(DESTDIR)$(bindir); then \
97 echo "creating $(DESTDIR)$(bindir)"; \
98 mkdir -p $(DESTDIR)$(bindir); \
99 fi
100 -@if test ! -d $(DESTDIR)$(man1dir); then \
101 echo "creating $(DESTDIR)$(man1dir)"; \
102 mkdir -p $(DESTDIR)$(man1dir); \
103 fi
104 -@if test ! -d $(DESTDIR)$(sysconfdir); then \
105 echo "creating $(DESTDIR)$(sysconfdir)"; \
106 mkdir -p $(DESTDIR)$(sysconfdir); \
107 fi
108 -@if test ! -d $(DESTDIR)$(IMAGEDIR); then \
109 echo "Creating $(DESTDIR)$(IMAGEDIR)"; \
110 mkdir -p $(DESTDIR)$(IMAGEDIR); \
111 fi
112 $(INSTALL_PROGRAM) sarg$(EXEEXT) $(DESTDIR)$(bindir)/sarg$(EXEEXT);
113 chmod 755 $(DESTDIR)$(bindir)/sarg$(EXEEXT);
114 $(INSTALL_PROGRAM) sarg.1 $(DESTDIR)$(man1dir)/sarg.1
115 chmod 755 $(DESTDIR)$(man1dir)/sarg.1
116 @if test ! -f $(DESTDIR)$(sysconfdir)/sarg.conf; then \
117 echo "cp $(DESTDIR)$(sysconfdir)/sarg.conf"; \
118 cp sarg.conf $(DESTDIR)$(sysconfdir)/sarg.conf; \
119 else \
120 cp sarg.conf $(DESTDIR)$(sysconfdir)/sarg.conf.default; \
121 fi
122 cp ./exclude_codes $(DESTDIR)$(sysconfdir);
123 cp ./user_limit_block $(DESTDIR)$(sysconfdir);
124 cp -r ./images/* $(DESTDIR)$(IMAGEDIR);
125 -@if test -n "$(FONTDIR)" ; then \
126 if test ! -d "$(DESTDIR)$(FONTDIR)" ; then \
127 echo "Creating $(DESTDIR)$(FONTDIR)"; \
128 mkdir -p "$(DESTDIR)$(FONTDIR)"; \
129 fi; \
130 cp -r ./fonts/* "$(DESTDIR)$(FONTDIR)"; \
131 fi
132 cp -r ./css.tpl $(DESTDIR)$(sysconfdir);
133 -@if test -n "$(SARGPHPDIR)" -a -d "$(DESTDIR)$(SARGPHPDIR)"; then \
134 cp -r ./sarg-php $(DESTDIR)$(SARGPHPDIR); \
135 fi
136
137 uninstall: uninstall-po
138 rm -f $(DESTDIR)$(bindir)/sarg
139 rm -f $(DESTDIR)$(man1dir)/sarg.1
140
141 TAGS: $(SRCS)
142 etags $(SRCS)
143
144 clean: clean-po
145 rm -f sarg *.o core
146
147 mostlyclean: clean
148
149 distclean: clean
150 rm -f Makefile config.status config.cache config.log
151
152 realclean: distclean
153 rm -f TAGS
154
155 install-po:
156 $(MAKE) -C po install
157
158 uninstall-po:
159 $(MAKE) -C po uninstall
160
161 clean-po:
162 $(MAKE) -C po clean
163
164 update-po:
165 $(MAKE) -C po update-po
166
167 po-from-tp:
168 @echo "Fetching latest po files from translationprojetc.org"
169 rsync -Lrtvz -u translationproject.org::tp/latest/sarg/ po