scc

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

commit 1dc92fbaf4a0e03602ff769eca02bf7a2354d433
parent e06db230d208ddcbd42b0dbcd79ab24c81d2c1b5
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 12 Sep 2017 17:37:43 +0100

[lib] Add dependency to scc.h

All the files of the library depend of that file.

Diffstat:
Mlib/scc/Makefile | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/scc/Makefile b/lib/scc/Makefile @@ -6,6 +6,8 @@ include libdep.mk all: libscc.a +$(LIB-OBJ): ../../inc/scc.h + libscc.a: $(LIB-OBJ) ar $(ARFLAGS) $@ $? ranlib $@