summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdoardo La Greca2025-05-04 17:36:36 +0200
committerEdoardo La Greca2025-05-04 17:36:36 +0200
commit0e121131f8cc5e96927868b155f388ae6cf2698a (patch)
tree6b6972c1a045b0e0df83193200510b1bcf30174e
parent85b47ab8341df72fac08baef7e3cc859587f3761 (diff)
add uninstall target
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e9b1d65..fdcba32 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,9 @@ clean:
install: all
mv -f $(OUTNAME) $(PREFIX)
+uninstall:
+ rm -f $(PREFIX)/$(OUTNAME)
+
test: all
c99 -l libfemtokit.a -o test test/$(TESTFILE)