scc

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

commit 6d6cccc6cc7d73c1591b4bb8f84231f9f94e4b02
parent cb0e4657c6c07681024481d68eff39b72c8f5963
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 19 Jan 2020 12:03:06 +0100

libc: Fix Makefile of ctype and time

Diffstat:
Msrc/libc/ctype/Makefile | 4++--
Msrc/libc/time/Makefile | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/libc/ctype/Makefile b/src/libc/ctype/Makefile @@ -22,10 +22,10 @@ OBJS =\ tolower.$O\ toupper.$O\ -all: $(OBJS) +all: $(LIBC) $(LIBC): $(OBJS) - $(MKLIB) + $(MKLST) dep: inc-dep diff --git a/src/libc/time/Makefile b/src/libc/time/Makefile @@ -13,10 +13,10 @@ OBJS =\ mktime.$O\ strftime.$O\ -all: $(OBJS) +all: $(LIBC) $(LIBC): $(OBJS) - $(MKLIB) + $(MKLST) dep: inc-dep