scc

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

commit c1b4b8354a76cc8c9aa13757e8b3db8d1b5a7c39
parent 4f0bf48999137e2429bab02829f1d34373d3f67a
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 21 Apr 2021 20:39:56 +0200

libc: Fix makefile $< usage in non-inference rule

Diffstat:
Msrc/libc/time/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libc/time/Makefile b/src/libc/time/Makefile @@ -22,7 +22,7 @@ $(LIBC): $(OBJS) $(OBJS): tz.c tz.c: timezone.lst - awk -f gentz.awk $< >$@ + awk -f gentz.awk $? >$@ dep: inc-dep