remove shfx subproject

This commit is contained in:
Emile Clark-Boman 2025-09-11 20:35:08 +10:00
parent 3c2977d76b
commit 0fcb8143cf
2 changed files with 1 additions and 49 deletions

View file

@ -29,10 +29,6 @@ $(BIN)/pw-test: $(addprefix $(LIB)/, main.c)
$(CC) $(CFLAGS) -o $(BUILD)/pw-test.o -c $^
$(CLD) $(CLDFLAGS) -o $@ $(BUILD)/pw-test.o
$(BIN)/shfx: shfx/main.c
$(CC) $(CFLAGS) -o $(BUILD)/shfx.o -c $^
$(CLD) $(CLDFLAGS) -lncurses -o $@ $(BUILD)/shfx.o
$(BIN)/dorne: $(addprefix $(BUILD)/,dorne.o ilovecurses.o)
$(CLD) $(CLDFLAGS) -lncurses -o $@ $^
@ -49,7 +45,7 @@ $(BUILD)/epty.o: $(addprefix $(CLI)/, child.c epty.c _pty.c)
# === DEVELOPMENT TARGETS ===
.PHONY: debug run test
debug:
$(MAKE) all \
$(MAKE) all \
CFLAGS="$(CFLAGS) $(CFLAGS_DBG)" \
CLDFLAGS="$(CLDFLAGS) $(CLDFLAGS_DBG)"
run: debug