-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
187 lines (147 loc) · 5.4 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
PREFIX = /usr
BIN = /bin
BINDIR = $(PREFIX)$(BIN)
DATA = /share
VARDIR = /var
LOGDIR = $(DEVDIR)/log
DATADIR = $(PREFIX)$(DATA)
DOCDIR = $(DATADIR)/doc
INFODIR = $(DATADIR)/info
LICENSEDIR = $(DATADIR)/licenses
PKGNAME = cerberus-logging
OPTIMISE = -Os
STD = -std=gnu99
WARN = -Wall -Wextra -Wdouble-promotion -Wformat=2 -Winit-self -Wmissing-include-dirs \
-Wtrampolines -Wfloat-equal -Wshadow -Wmissing-prototypes -Wmissing-declarations \
-Wredundant-decls -Wnested-externs -Winline -Wno-variadic-macros -Wsync-nand \
-Wunsafe-loop-optimizations -Wcast-align -Wstrict-overflow -Wdeclaration-after-statement \
-Wundef -Wbad-function-cast -Wcast-qual -Wwrite-strings -Wlogical-op -Waggregate-return \
-Wstrict-prototypes -Wold-style-definition -Wpacked -Wvector-operation-performance \
-Wunsuffixed-float-constants -Wsuggest-attribute=const -Wsuggest-attribute=noreturn \
-Wsuggest-attribute=pure -Wsuggest-attribute=format -Wnormalized=nfkc -Wconversion \
-fstrict-aliasing -fstrict-overflow -fipa-pure-const -ftree-vrp -fstack-usage \
-funsafe-loop-optimizations -pedantic
DEFS = -D'LOGDIR="$(LOGDIR)"'
SYSTEMS = btmp utmp lastlog syslog audit
DEFAULT_SYSTEMS = utmp
L_btmp =
L_utmp =
L_lastlog =
L_syslog =
L_audit = -laudit
.PHONY: default
default: $(DEFAULT_SYSTEMS) info
.PHONY: all
all: $(SYSTEMS) doc
.PHONY: btmp utmp lastlog syslog audit
btmp: bin/log-login-btmp
utmp: bin/log-login-utmp
lastlog: bin/log-login-lastlog
syslog: bin/log-login-syslog
audit: bin/log-login-audit
bin/log-login-%: obj/log-login-%.o obj/common.o
@mkdir -p bin
$(CC) $(STD) $(OPTIMISE) $(WARN) $(L_$*) $(LDFLAGS) -o $@ $^
obj/%.o: src/%.c src/*.h
@mkdir -p obj
$(CC) $(STD) $(OPTIMISE) $(WARN) $(DEFS) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
.PHONY: doc
doc: info pdf ps dvi
.PHONY: info
info: cerberus-logging.info
%.info: info/%.texinfo
makeinfo "$<"
.PHONY: pdf
pdf: cerberus-logging.pdf
%.pdf: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/pdf
cd obj/pdf ; yes X | texi2pdf ../../$<
mv obj/pdf/$@ $@
.PHONY: dvi
dvi: cerberus-logging.dvi
%.dvi: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/dvi
cd obj/dvi ; yes X | $(TEXI2DVI) ../../$<
mv obj/dvi/$@ $@
.PHONY: ps
ps: cerberus-logging.ps
%.ps: info/%.texinfo info/fdl.texinfo
@mkdir -p obj/ps
cd obj/ps ; yes X | texi2pdf --ps ../../$<
mv obj/ps/$@ $@
.PHONY: install
install: install-base install-default-systems install-info
.PHONY: install-all
install-all: install-base install-systems install-doc
.PHONY: install-base
install-base: install-logging install-license
.PHONY: install-logging
install-logging:
install -dm755 -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)"
install -m755 -- src/logging "$(DESTDIR)$(DATADIR)/$(PKGNAME)/logging"
.PHONY: install-license
install-license:
install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 -- COPYING LICENSE "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-systems
install-systems: $(foreach S,$(SYSTEMS),install-$(S))
.PHONY: install-default-systems
install-default-systems: $(foreach S,$(DEFAULT_SYSTEMS),install-$(S))
.PHONY: install-btmp
install-btmp: bin/log-login-btmp
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install $< -- "$(DESTDIR)$(BINDIR)/log-login-btmp"
.PHONY: install-utmp
install-utmp: bin/log-login-utmp
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install $< -- "$(DESTDIR)$(BINDIR)/log-login-utmp"
.PHONY: install-lastlog
install-lastlog: bin/log-login-lastlog
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install $< -- "$(DESTDIR)$(BINDIR)/log-login-lastlog"
.PHONY: install-syslog
install-syslog: bin/log-login-syslog
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install $< -- "$(DESTDIR)$(BINDIR)/log-login-syslog"
.PHONY: install-audit
install-audit: bin/log-login-audit
install -dm755 -- "$(DESTDIR)$(BINDIR)"
install $< -- "$(DESTDIR)$(BINDIR)/log-login-audit"
.PHONY: install-doc
install-doc: install-info install-pdf install-ps install-dvi
.PHONY: install-info
install-info: cerberus-logging.info
install -dm755 -- "$(DESTDIR)$(INFODIR)"
install -m644 -- "$<" "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
.PHONY: install-pdf
install-pdf: cerberus-logging.pdf
install -dm755 -- "$(DESTDIR)$(DOCDIR)"
install -m644 -- "$<" "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
.PHONY: install-ps
install-ps: cerberus-logging.ps
install -dm755 -- "$(DESTDIR)$(DOCDIR)"
install -m644 -- "$<" "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
.PHONY: install-dvi
install-dvi: cerberus-logging.dvi
install -dm755 -- "$(DESTDIR)$(DOCDIR)"
install -m644 -- "$<" "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"
.PHONY: uninstall
uninstall:
-rm -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)/logging"
-rmdir -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)"
-rm -- $(foreach S,$(SYSTEMS),"$(DESTDIR)$(BINDIR)/log-login-$(S)")
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE"
-rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-rmdir -- "$(DESTDIR)$(PREFIX)$(LICENSES)/$(PKGNAME)"
-rm -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"
.PHONY: clean
clean:
-rm -r bin obj *.su src/*.su