Makefile - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
Makefile (335B)
---
1 .POSIX:
2
3 DIRS =\
4 scc-ld\
5 scc-as\
6 scc-cc\
7 scc-make\
8 scc-objdump\
9
10 PROJECTDIR = ../..
11 include $(PROJECTDIR)/scripts/rules.mk
12
13 TARGET =\
14 scc-nm\
15 scc-ar\
16 scc-strip\
17 scc-size\
18 scc-ranlib\
19 scc-objcopy\
20 scc-addr2line\
21
22 MORE_LDLIBS = -lmach -lscc
23
24 all: $(TARGET) $(DIRS)
25 @cp $(TARGET) $(BINDIR)
26
27 $(TARGET): $(LIBMACH) $(LIBSCC)