From a40bfd8349a5df3621009b3691674ec6937bf49b Mon Sep 17 00:00:00 2001 From: augety Date: Sat, 20 Jul 2024 19:39:41 +0800 Subject: [PATCH] =?UTF-8?q?feat(st):=20=E6=B7=BB=E5=8A=A0.gitignore=20&&?= =?UTF-8?q?=20=E4=BF=AE=E6=94=B9Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- st/.gitignore | 5 +++++ st/Makefile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 st/.gitignore diff --git a/st/.gitignore b/st/.gitignore new file mode 100644 index 0000000..67d5229 --- /dev/null +++ b/st/.gitignore @@ -0,0 +1,5 @@ +*.rej +*.orig +*.o +config.h +st diff --git a/st/Makefile b/st/Makefile index 15db421..61fab4d 100644 --- a/st/Makefile +++ b/st/Makefile @@ -24,7 +24,7 @@ st: $(OBJ) $(CC) -o $@ $(OBJ) $(STLDFLAGS) clean: - rm -f st $(OBJ) st-$(VERSION).tar.gz + rm -f st *.rej *.orig config.h $(OBJ) st-$(VERSION).tar.gz dist: clean mkdir -p st-$(VERSION)