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 (315B)
---
1 .POSIX:
2
3 PROJECTDIR = ../../../..
4 DIRS =\
5 darwin\
6 dragonfly\
7 freebsd\
8 linux\
9 netbsd\
10 openbsd\
11
12 include $(PROJECTDIR)/scripts/rules.mk
13 include ../../rules.mk
14
15 OBJS =\
16 longjmp.$O\
17 memchr.$O\
18 memcmp.$O\
19 memcpy.$O\
20 memmove.$O\
21 memset.$O\
22 setjmp.$O\
23 strchr.$O\
24 strcmp.$O\
25 strcpy.$O\
26
27 all: $(OBJS) $(SYS)