073974e76ed1f1f7901a9ebdc781ebab180b29ec
[dss.git] / Makefile
1 dss_objects := cmdline.o dss.o string.o fd.o exec.o signal.o daemon.o df.o time.o snap.o ipc.o
2 all: dss
3 man: dss.1
4
5 DEBUG_CFLAGS ?=
6 DEBUG_CFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W
7 DEBUG_CFLAGS += -Wredundant-decls
8 CFLAGS ?=
9 CFLAGS += -Os
10 CFLAGS += -Wall
11 CFLAGS += -Wuninitialized
12 CFLAGS += -Wchar-subscripts
13 CFLAGS += -Wformat-security
14 CFLAGS += -Werror-implicit-function-declaration
15 CFLAGS += -Wmissing-format-attribute
16 CFLAGS += -Wunused-macros
17 CFLAGS += -Wbad-function-cast
18
19 Makefile.deps: $(wildcard *.c *.h)
20         gcc -MM -MG *.c > $@
21
22 -include Makefile.deps
23
24 dss: $(dss_objects)
25         $(CC) -o $@ $(dss_objects)
26
27 cmdline.o: cmdline.c cmdline.h
28         $(CC) -c $(CFLAGS) $<
29
30 %.o: %.c Makefile
31         $(CC) -c $(CFLAGS) $(DEBUG_CFLAGS) $<
32
33 %.png: %.dia
34         dia -e $@ -t png $<
35
36 cmdline.c cmdline.h: dss.ggo
37         gengetopt --conf-parser < $<
38
39 dss.1: dss dss.1.inc
40         help2man -h --detailed-help --include dss.1.inc -N ./$< > $@
41
42 %.1.html: %.1
43         man2html $< > $@
44
45 clean:
46         rm -f *.o dss dss.1 dss.1.html Makefile.deps *.png *~ cmdline.c cmdline.h index.html
47
48 index.html: dss.1.html index.html.in INSTALL README NEWS
49         sed -e '/@README@/,$$d' index.html.in > $@
50         grutatxt -nb < README >> $@
51         sed -e '1,/@README@/d' -e '/@NEWS@/,$$d' index.html.in >> $@
52         grutatxt -nb < NEWS >> $@
53         sed -e '1,/@NEWS@/d' -e '/@INSTALL@/,$$d' index.html.in >> $@
54         grutatxt -nb < INSTALL >> $@
55         sed -e '1,/@INSTALL@/d' -e '/@MAN_PAGE@/,$$d' index.html.in >> $@
56         sed -e '1,/Return to Main Contents/d' -e '/Index/,$$d' dss.1.html >> $@
57         sed -e '1,/@MAN_PAGE@/d' index.html.in >> $@