birdsurf

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a48321159f919587d27b2f2be904f7844f3a2309
parent c24b23ea15fd92b5a492e58cb1a568fb10cf2d9a
Author: grouse <bdmfegys@duck.com>
Date:   Sat, 24 Feb 2024 23:27:31 -0500

add CLN variable to Makefile, containing list of all files to be deleted upon running 'make clean'

Diffstat:
MMakefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -9,6 +9,7 @@ WSRC = webext-surf.c OBJ = $(SRC:.c=.o) WOBJ = $(WSRC:.c=.o) WLIB = $(WSRC:.c=.so) +CLN = *.rej *.orig config.h all: options surf $(WLIB) @@ -37,7 +38,7 @@ $(WOBJ): $(WSRC) $(CC) $(WEBEXTCFLAGS) $(CFLAGS) -c $(WSRC) clean: - rm -f surf config.h $(OBJ) + rm -f surf $(CLN) $(OBJ) rm -f $(WLIB) $(WOBJ) distclean: clean