-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
62 lines (43 loc) · 988 Bytes
/
Makefile
File metadata and controls
62 lines (43 loc) · 988 Bytes
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
all: source
dep: depend
depend:
+make -C src $@
source:
+make -C src
count:
test -f src/Makefile && make -C src $@
count_all:
test -f src/Makefile && make -C src $@
uncr:
test -f src/Makefile && make -C src $@
test:
+test -f src/Makefile && make -C src $@
install:
+make -C src $@
clean:
test -f src/Makefile && make -C src $@
rm -rf doc/html doc/latex Doxyfile lcov-out BlizzardIII.qch *.deb
configure: configure.ac
autoreconf
rm -rf autom4te.cache
config: configure
./configure BLZ3_DOC=$(PWD)/doc --prefix=$(PWD)
distclean: clean
+make -C src $@
bin/clobber.sh $(PWD)
dist: configure
(cd ..; tar c blz3 | gzip -9 > /tmp/blz3.tar.gz; )
cp blz3.spec /tmp/
astyle:
+find . -name "*.h" | xargs astyle
+find . -name "*.cc" | xargs astyle
+astyle src/OpenGL/*.cpp
cppcheck:
+make -C src $@
lcov:
+make -C src $@
documentation: Doxyfile
doxygen Doxyfile
Doxyfile: Doxyfile.in configure
./configure BLZ3_DOC=$(PWD)/doc --prefix=$(PWD)
# DO NOT DELETE