chiark / gitweb /
c07dbdc321b3bf9f5462d27f57a80aa67cb79af1
[chiark-utils.git] / cprogs / Makefile
1 # Makefile
2 # simple make settings
3 #
4 # This file is part of chiark backup, a system for backing up GNU/Linux and
5 # other UN*X-compatible machines, as used on chiark.greenend.org.uk.
6 #
7 # chiark backup is:
8 #  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
9 #  Copyright (C) 1999 Peter Maydell <pmaydell@chiark.greenend.org.uk>
10 #
11 # This is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 3, or (at your option) any later version.
14 #
15 # This is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18 # details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with this program; if not, consult the Free Software Foundation's
22 # website at www.fsf.org, or the GNU Project website at www.gnu.org.
23
24 us=     chiark-utils-bin
25
26 include ../settings.make
27
28 RWBUFFER_SIZE_MB=16
29
30 PROGRAMS=               readbuffer writebuffer with-lock-ex xbatmon-simple \
31                         summer watershed rcopy-repeatedly xduplic-copier \
32                         cgi-fcgi-perl
33 SUIDSBINPROGRAMS=       really
34 DAEMONS=                trivsoundd
35 MAN1PAGES=              readbuffer.1 writebuffer.1 with-lock-ex.1 \
36                         xduplic-copier.1
37 MAN8PAGES=              trivsoundd.8 really.8
38 BUILTTXTDOCS=           watershed.txt
39 TXTDOCS=                $(BUILTTXTDOCS)
40
41 acctdump_cc_out:=$(shell \
42         printf "\#include <sys/types.h>\n\#include <sys/acct.h>" \
43                 | $(CC) -E - 2>&1 >/dev/null \
44 )
45 ifeq (,$(acctdump_cc_out))
46 PROGRAMS+=acctdump
47 MAN8PAGES+=acctdump.8
48 else
49 $(warning Not building acctdump: $(acctdump_cc_out))
50 endif
51
52 TARGETS=        $(PROGRAMS) $(SUIDSBINPROGRAMS) $(DAEMONS) $(BUILTTXTDOCS)
53
54 all:            $(TARGETS)
55
56 readbuffer:                     readbuffer.o                    rwbuffer.o
57 writebuffer:                    writebuffer.o   wrbufcore.o     rwbuffer.o 
58 trivsoundd:                     trivsoundd.o    wrbufcore.o     rwbuffer.o 
59 really:                         really.o myopt.o
60 acctdump:                       acctdump.o      myopt.o
61 cgi-fcgi-perl:                  cgi-fcgi-perl.o myopt.o
62
63 acctdump.o really.o myopt.o rcopy-repeatedly.o: myopt.h
64 readbuffer.o writebuffer.o rwbuffer.o wrbufcore.o trivsoundd.o: rwbuffer.h
65
66 xbatmon-simple: LDLIBS += -lX11 -lm
67
68 xduplic-copier: LDLIBS += -lXmu -lSM -lICE -lXt -lXext
69 xduplic-copier: LDLIBS += -lX11 -lxcb -lXau -lXdmcp
70
71 summer:         summer.o
72 summer:         LDLIBS += -lnettle -lgmp
73
74 rcopy-repeatedly: rcopy-repeatedly.o myopt.o
75 rcopy-repeatedly: LDLIBS += -lm -lrt
76
77 watershed:      watershed.o common.o
78 watershed:      LDLIBS += -lnettle -lgmp
79
80 watershed.txt:  watershed.c
81                 sed '/^$$/,$$d' <$^ >$@.new && mv -f $@.new $@
82
83 install:                all
84                 $(INSTALL_DIRECTORY) $(bindir) $(sbindir)
85                 $(INSTALL_PROGRAM) $(PROGRAMS) $(bindir)
86                 $(INSTALL_PROGRAM) $(DAEMONS) $(sbindir)
87                 $(INSTALL) -m 4774 -o root -g $(SYSTEM_GROUP) \
88                         $(SUIDSBINPROGRAMS) $(sbindir)
89
90 install-docs:   watershed.txt
91                 $(INSTALL_DIRECTORY) $(man1dir) $(man8dir) $(txtdocdir)
92                 $(INSTALL) -m 644 $(MAN1PAGES) ${man1dir}/.
93                 $(INSTALL) -m 644 $(MAN8PAGES) ${man8dir}/.
94                 $(INSTALL) -m 644 $(TXTDOCS) ${txtdocdir}/.
95
96 install-examples:
97
98 clean:
99                 rm -f *~ ./#*# *.o $(PROGRAMS)
100
101 distclean realclean:    clean
102                 rm -f $(TARGETS)