forked from gabrielcuvillier/regal-emscripten-fixes
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
67 lines (53 loc) · 1.05 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
#
# 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.glsloptlib
include Makefile.pcrelib
include Makefile.regal
include Makefile.regalw
include Makefile.glu
include Makefile.glut
include Makefile.glew
include Makefile.glewinfo
# Examples
include Makefile.dreamtorus
include Makefile.dreamtorus_static
include Makefile.alphatorus
include Makefile.tiger
include Makefile.nacl
# Testing
include Makefile.gtest
include Makefile.regaltest
# Misc
# include Makefile.expat
all::
clean::
clobber:
$(RM) -r tmp
$(RM) -r lib
$(RM) -r bin
# Disable the built-in yacc & lex rules
%.c: %.y
%.c: %.l
.PHONY: all clean clobber