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 (186B)
---
1 .POSIX:
2
3 PROJECTDIR = ../../../../..
4 include $(PROJECTDIR)/scripts/rules.mk
5
6 OBJS =\
7 cgen.o \
8 code.o \
9 mach.o \
10 stubs.o \
11
12 all: builtin.o
13
14 builtin.o: $(OBJS)
15 $(LD) -r -o $@ $(OBJS)