From c783d74e22845df2a6ed8c2737bdca58127643e0 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 27 May 2012 23:04:14 +0200 Subject: Add uninstall rule It might or might not be non-standard, but I hate having to figure out which files should be removed to uninstall something, can we please have this? --- src/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile b/src/Makefile index 40340fd..70c522f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -10,5 +10,8 @@ main.o: main.c install: baps1 install baps1 $(INST_PATH)/baps1 +uninstall: + rm $(INST_PATH)/baps1 + clean: rm baps1 *.o -- cgit v1.2.3-54-g00ecf