commit 6a8297ac6b565b973abae4ab696c689694da1c1e
parent 9941c3dff6926fda7a777d730051f86e75d7c2c7
Author: regexghost <regexghost@protonmail.com>
Date: Thu, 14 May 2026 21:53:05 +0100
added 'full' to makefile
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -9,6 +9,8 @@ OBJ = $(SRC:.c=.o)
all: st
+full: clean all
+
config.h:
cp config.def.h config.h
@@ -25,7 +27,7 @@ st: $(OBJ)
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
clean:
- rm -f st $(OBJ) st-$(VERSION).tar.gz
+ rm -f config.h st $(OBJ) st-$(VERSION).tar.gz
dist: clean
mkdir -p st-$(VERSION)