chiark / gitweb /
cd82ab1bf55cbdc43881de5b0d1ab3685737d727
[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 SUIDSBINPROGRAMS=       really
33 DAEMONS=                trivsoundd
34 MAN1PAGES=              readbuffer.1 writebuffer.1 with-lock-ex.1 \
35                         xduplic-copier.1
36 MAN8PAGES=              trivsoundd.8 really.8
37 BUILTTXTDOCS=           watershed.txt
38 TXTDOCS=                $(BUILTTXTDOCS)
39
40 acctdump_cc_out:=$(shell \
41         printf "\#include <sys/types.h>\n\#include <sys/acct.h>" \
42                 | $(CC) -E - 2>&1 >/dev/null \
43 )
44 ifeq (,$(acctdump_cc_out))
45 PROGRAMS+=acctdump
46 MAN8PAGES+=acctdump.8
47 else
48 $(warning Not building acctdump: $(acctdump_cc_out))
49 endif
50
51 TARGETS=        $(PROGRAMS) $(SUIDSBINPROGRAMS) $(DAEMONS) $(BUILTTXTDOCS)
52
53 all:            $(TARGETS)
54
55 readbuffer:                     readbuffer.o                    rwbuffer.o
56 writebuffer:                    writebuffer.o   wrbufcore.o     rwbuffer.o 
57 trivsoundd:                     trivsoundd.o    wrbufcore.o     rwbuffer.o 
58 really:                         really.o myopt.o
59 acctdump:                       acctdump.o      myopt.o
60
61 acctdump.o really.o myopt.o rcopy-repeatedly.o: myopt.h
62 readbuffer.o writebuffer.o rwbuffer.o wrbufcore.o trivsoundd.o: rwbuffer.h
63
64 xbatmon-simple: LDLIBS += -lX11 -lm
65
66 xduplic-copier: LDLIBS += -lXmu -lSM -lICE -lXt -lXext
67 xduplic-copier: LDLIBS += -lX11 -lxcb -lXau -lXdmcp
68
69 summer:         summer.o
70 summer:         LDLIBS += -lnettle -lgmp
71
72 rcopy-repeatedly: rcopy-repeatedly.o myopt.o
73 rcopy-repeatedly: LDLIBS += -lm -lrt
74
75 watershed:      watershed.o
76 watershed:      LDLIBS += -lnettle -lgmp
77
78 watershed.txt:  watershed.c
79                 sed '/^$$/,$$d' <$^ >$@.new && mv -f $@.new $@
80
81 install:                all
82                 $(INSTALL_DIRECTORY) $(bindir) $(sbindir)
83                 $(INSTALL_PROGRAM) $(PROGRAMS) $(bindir)
84                 $(INSTALL_PROGRAM) $(DAEMONS) $(sbindir)
85                 $(INSTALL) -m 4774 -o root -g $(SYSTEM_GROUP) \
86                         $(SUIDSBINPROGRAMS) $(sbindir)
87
88 install-docs:   watershed.txt
89                 $(INSTALL_DIRECTORY) $(man1dir) $(man8dir) $(txtdocdir)
90                 $(INSTALL) -m 644 $(MAN1PAGES) ${man1dir}/.
91                 $(INSTALL) -m 644 $(MAN8PAGES) ${man8dir}/.
92                 $(INSTALL) -m 644 $(TXTDOCS) ${txtdocdir}/.
93
94 install-examples:
95
96 clean:
97                 rm -f *~ ./#*# *.o $(PROGRAMS)
98
99 distclean realclean:    clean
100                 rm -f $(TARGETS)