scc

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

commit 5f4055245f05a0f49f5633ce3eb55d786b0ce824
parent e2fa5a7b5d693ad3ebb5ccf8ef3ca517032ac598
Author: Quentin Rameau <quinq@fifth.space>
Date:   Tue, 16 Nov 2021 22:08:25 +0100

cmd: Fix qbe new command location

Diffstat:
Msrc/cmd/Makefile | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/cmd/Makefile b/src/cmd/Makefile @@ -22,16 +22,16 @@ TARGET =\ all: $(TARGET) $(DIRS) -qbe: qbe/.git - qbe/.git: git submodule init qbe git submodule update qbe -qbe/obj/qbe: qbe +qbe: qbe/.git + +qbe/qbe: qbe -$(LIBEXEC)/scc/qbe: qbe/obj/qbe - cp qbe/obj/qbe $@ +$(LIBEXEC)/scc/qbe: qbe/qbe + cp qbe/qbe $@ $(BINDIR)/scc-nm: nm.o $(LIBMACH) $(LIBSCC) $(CC) $(PROJ_LDFLAGS) nm.o -lmach -lscc -o $@