Makefile - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
Makefile (337B)
---
1 .POSIX:
2
3 PROJECTDIR = ../../..
4
5 DIRS =\
6 amd64\
7 arm64\
8 arm\
9 i386\
10 freebsd\
11 ppc\
12 netbsd\
13 openbsd\
14 darwin\
15 dragonfly\
16 linux\
17 posix\
18
19 BSD =\
20 netbsd\
21 openbsd\
22 darwin\
23 dragonfly\
24
25 POSIX =\
26 $(BSD)\
27 linux\
28
29 include $(PROJECTDIR)/scripts/rules.mk
30 include ../rules.mk
31
32 NODEP = 1
33
34 all: $(ARCH) $(SYS)
35
36 $(POSIX): posix
37 $(BSD): bsd