diff options
author | Edoardo La Greca | 2025-05-04 17:36:36 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-05-04 17:36:36 +0200 |
commit | 0e121131f8cc5e96927868b155f388ae6cf2698a (patch) | |
tree | 6b6972c1a045b0e0df83193200510b1bcf30174e | |
parent | 85b47ab8341df72fac08baef7e3cc859587f3761 (diff) |
add uninstall target
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |