scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit ec3185794afb773d64c798ebd6c3c846d56a93db
parent 9cdb74cddc65c7328839be3892384d5e4d095ea1
Author: Quentin Rameau <quinq@fifth.space>
Date:   Sat,  2 Jul 2016 11:10:14 +0200

[driver] add a dependency to arg.h to Makefile

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

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