scc

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

commit 497fb0862cf20043e7f735c93b2e8f24934adf1f
parent 127f66645b63a901f899b9a7136030d77b1f3db5
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri,  8 Sep 2017 17:41:17 +0200

[as] Add libdir generation

Diffstat:
Mas/Makefile | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/as/Makefile b/as/Makefile @@ -14,6 +14,10 @@ $(OBJ): $(HDR) as: $(OBJ) $(CC) $(SCC_LDFLAGS) $(OBJ) -lscc -o $@ +$(LIBDIR)/libscc.a: + cd $(LIBDIR) && $(MAKE) + + dep: ./gendep.sh $(TARGETS)