scc

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

commit 2a5a4fdc79effef6289fa10af2df903f2a88b7b2
parent f7e089f6ba9d2747d8b6f01e00c2a1d4b4e287e8
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 25 May 2016 15:56:33 +0200

[driver] Fix libcc target in Makefile

Diffstat:
Mdriver/posix/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/driver/posix/Makefile b/driver/posix/Makefile @@ -10,7 +10,7 @@ all: scc $(OBJS): ../../inc/cc.h ../../lib/libcc.a: - cd ../lib && $(MAKE) -e -$(MAKEFLAGS) + cd ../../lib && $(MAKE) -e -$(MAKEFLAGS) scc: $(OBJS) ../../lib/libcc.a $(CC) $(SCC_LDFLAGS) $(OBJS) ../../lib/libcc.a -o $@