Skip to content

Commit 15251f3

Browse files
muffin4rgerganov
authored andcommitted
Add scythe2 to install and uninstall sections of Makefile
and to .gitignore. Now `sudo make install` and `sudo make uninstall` include this binary. See issue #85
1 parent 7c448d2 commit 15251f3

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.swp
22
# binaries
33
scythe
4+
scythe2
45
footswitch

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ install: all
2727
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
2828
$(INSTALL) footswitch $(DESTDIR)$(PREFIX)/bin
2929
$(INSTALL) scythe $(DESTDIR)$(PREFIX)/bin
30+
$(INSTALL) scythe2 $(DESTDIR)$(PREFIX)/bin
3031
ifeq ($(UNAME), Linux)
3132
$(INSTALL) -d $(DESTDIR)$(UDEVPREFIX)/rules.d
3233
$(INSTALLDATA) 19-footswitch.rules $(DESTDIR)$(UDEVPREFIX)/rules.d
@@ -35,6 +36,7 @@ endif
3536
uninstall:
3637
rm -f $(DESTDIR)$(PREFIX)/bin/footswitch
3738
rm -f $(DESTDIR)$(PREFIX)/bin/scythe
39+
rm -f $(DESTDIR)$(PREFIX)/bin/scythe2
3840
ifeq ($(UNAME), Linux)
3941
rm -f $(DESTDIR)$(UDEVPREFIX)/rules.d/19-footswitch.rules
4042
endif

0 commit comments

Comments
 (0)