scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit bc0a760a1894b2e400e0df1dd15527e1c1db7c1e
parent 14e32d4a1c837567c152a72e74a1dc6306b00f4f
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed,  2 Jan 2019 11:39:41 +0000

Simplify src Makefile

Diffstat:
Msrc/Makefile | 8+++-----
1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -4,12 +4,10 @@ PROJECTDIR = .. include $(PROJECTDIR)/scripts/rules.mk TOOLS = cc1 cc2 ld as nm objdump -LIBS = libscc libcoff32 -DIRS = $(TOOLS) $(LIBS) libc libcrt +LIBS = libscc libcoff32 libc libcrt +DIRS = $(TOOLS) $(LIBS) -all: $(TOOLS) crt - -crt: libcrt libc $(TOOLS) +all: $(TOOLS) $(TOOLS): $(LIBS)