blob: 45ece5ea0ff33ee4fb15757516383621b5164eaa (
plain) (
blame)
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
|
# Copyright © 2012, 2013, 2014 Mattias Andrée (maandree@member.fsf.org)
#
# 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.
#
# [GNU All Permissive License]
OPTIMISATION = -Ofast
# -Os optimise for small size
# -Ofast optimise for performance
# -Og optimise for debugging
# -g include debugging data (use together with -Og or alone)
PKGNAME = adjbacklight
COMMAND = adjbacklight
PREFIX = /usr
BIN = /bin
BINDIR = $(PREFIX)$(BIN)
DATA = /share
DATADIR = $(PREFIX)$(DATA)
DOCDIR = $(DATADIR)/doc
INFODIR = $(DATADIR)/info
LICENSEDIR = $(DATADIR)/licenses
MANUAL = adjbacklight
MANUALDIR = info/
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
# excluded: -pedantic
# compile the package
.PHONY: default
default: code info
.PHONY: all
all: code doc
.PHONY: code
code: bin/adjbacklight
bin/adjbacklight: src/adjbacklight.c
@mkdir -p bin
$(CC) $(OPTIMISATION) $(WARN) -std=gnu90 -o "$@" "$<"
.PHONY: code
doc: info pdf dvi ps
.PHONY: info
info: bin/$(MANUAL).info
bin/%.info: $(MANUALDIR)%.texinfo
@mkdir -p bin
$(MAKEINFO) "$<"
mv $*.info $@
.PHONY: pdf
pdf: bin/$(MANUAL).pdf
bin/%.pdf: $(MANUALDIR)%.texinfo
@! test -d obj/pdf || rm -rf obj/pdf
@mkdir -p bin obj/pdf
cd obj/pdf && texi2pdf ../../"$<" < /dev/null
mv obj/pdf/$*.pdf $@
.PHONY: dvi
dvi: bin/$(MANUAL).dvi
bin/%.dvi: $(MANUALDIR)%.texinfo
@! test -d obj/dvi || rm -rf obj/dvi
@mkdir -p bin obj/dvi
cd obj/dvi && $(TEXI2DVI) ../../"$<" < /dev/null
mv obj/dvi/$*.dvi $@
.PHONY: ps
ps: bin/$(MANUAL).ps
bin/%.ps: $(MANUALDIR)%.texinfo
@! test -d obj/ps || rm -rf obj/ps
@mkdir -p bin obj/ps
cd obj/ps && texi2pdf --ps ../../"$<" < /dev/null
mv obj/ps/$*.ps $@
# install to system
.PHONY: install
install: install-base install-info
.PHONY: install-all
install-all: install-base install-doc
.PHONY: install-base
install-base: install-cmd install-copyright
.PHONY: install-cmd
install-cmd: bin/adjbacklight
install -d -- "$(DESTDIR)$(BINDIR)"
install -m4755 -- bin/adjbacklight "$(DESTDIR)$(BINDIR)/$(COMMAND)"
.PHONY: install-copyright
install-copyright: install-copying install-license
.PHONY: install-copying
install-copying:
install -d -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 -- COPYING "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-license
install-license:
install -d -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
install -m644 -- LICENSE "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
.PHONY: install-doc
install-doc: install-info install-pdf install-dvi install-ps
.PHONY: install-info
install-info: bin/$(MANUAL).info
install -d -- "$(DESTDIR)$(INFODIR)"
install -m644 -- "$<" "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
.PHONY: install-pdf
install-pdf: bin/$(MANUAL).pdf
install -d -- "$(DESTDIR)$(DOCDIR)"
install -m644 -- "$<" "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
.PHONY: install-dvi
install-dvi: bin/$(MANUAL).dvi
install -d -- "$(DESTDIR)$(DOCDIR)"
install -m644 -- "$<" "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"
.PHONY: install-ps
install-ps: bin/$(MANUAL).ps
install -d -- "$(DESTDIR)$(DOCDIR)"
install -m644 -- "$<" "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
# remove files created by `install`
.PHONY: uninstall
uninstall:
-rm -- "$(DESTDIR)$(BINDIR)/$(COMMAND)"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE"
-rm -d -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-rm -- "$(DESTDIR)$(INFODIR)/$(PKGNAME).info"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).pdf"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).dvi"
-rm -- "$(DESTDIR)$(DOCDIR)/$(PKGNAME).ps"
# remove files created by `all`
.PHONY: clean
clean:
-rm -r bin obj
|