forked from Mars999/regal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
57 lines (45 loc) · 892 Bytes
/
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
#
# Common command-line options
# ===========================
#
# To build in debug mode:
# - use MODE=debug
#
# To build using ccache (http://ccache.samba.org/)
# - use CCACHE=ccache
#
# To disable stripping of binaries:
# - use MODE=debug
# - use STRIP=
#
# To disable symlinks:
# - use LN=
#
# To see verbose output
# - use V=1 on gmake command-line
include build/common.inc
include Makefile.zlib
include Makefile.libpng
include Makefile.snappy
include Makefile.apitrace
include Makefile.regal
include Makefile.glu
include Makefile.glut
include Makefile.glew
include Makefile.glewinfo
# Examples
include Makefile.dreamtorus
include Makefile.dreamtorus_static
include Makefile.tiger
# Testing
include Makefile.gtest
include Makefile.regaltest
# Misc
# include Makefile.expat
all::
clean::
clobber:
$(RM) -r tmp
$(RM) -r lib
$(RM) -r bin
.PHONY: all clean clobber