aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-10-01 22:21:25 +0200
committerFilip Wandzio <contact@philw.dev>2025-10-01 22:21:25 +0200
commit37e65300245be45d4000797b3ada53c68022fc26 (patch)
treeae304da2869d2069b3359def36e36d29877fc7c8 /Makefile
parent34fbb07af8de311a4d316325bcf574341f6be5dd (diff)
downloadwhiterabbit-37e65300245be45d4000797b3ada53c68022fc26.tar.gz
whiterabbit-37e65300245be45d4000797b3ada53c68022fc26.zip
Implement use flags for subcommants
Optimize synapse pipeline
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index fe1c42b..5a8c27d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,12 +4,12 @@ MANDIR ?= $(PREFIX)/share/man/man1
4 4
5install: 5install:
6 @echo "Installing whiterabbit..." 6 @echo "Installing whiterabbit..."
7 install -Dm755 whiterabbit.sh $(BINDIR)/whiterabbit 7 install -Dm755 wh.sh $(BINDIR)/wh
8 install -Dm644 whiterabbit.1 $(MANDIR)/whiterabbit.1 8 install -Dm644 wh.1 $(MANDIR)/wh.1
9 @echo "Installed to $(BINDIR)/whiterabbit and man page to $(MANDIR)/whiterabbit.1" 9 @echo "Installed to $(BINDIR)/whand man page to $(MANDIR)/wh.1"
10 10
11uninstall: 11uninstall:
12 @echo "Removing whiterabbit..." 12 @echo "Removing wh..."
13 rm -f $(BINDIR)/whiterabbit 13 rm -f $(BINDIR)/wh
14 rm -f $(MANDIR)/whiterabbit.1 14 rm -f $(MANDIR)/wh.1
15 @echo "Removed whiterabbit and its man page" 15 @echo "Removed wh and its man page"