We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c448d2 commit 15251f3Copy full SHA for 15251f3
.gitignore
@@ -1,4 +1,5 @@
1
*.swp
2
# binaries
3
scythe
4
+scythe2
5
footswitch
Makefile
@@ -27,6 +27,7 @@ install: all
27
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
28
$(INSTALL) footswitch $(DESTDIR)$(PREFIX)/bin
29
$(INSTALL) scythe $(DESTDIR)$(PREFIX)/bin
30
+ $(INSTALL) scythe2 $(DESTDIR)$(PREFIX)/bin
31
ifeq ($(UNAME), Linux)
32
$(INSTALL) -d $(DESTDIR)$(UDEVPREFIX)/rules.d
33
$(INSTALLDATA) 19-footswitch.rules $(DESTDIR)$(UDEVPREFIX)/rules.d
@@ -35,6 +36,7 @@ endif
35
36
uninstall:
37
rm -f $(DESTDIR)$(PREFIX)/bin/footswitch
38
rm -f $(DESTDIR)$(PREFIX)/bin/scythe
39
+ rm -f $(DESTDIR)$(PREFIX)/bin/scythe2
40
41
rm -f $(DESTDIR)$(UDEVPREFIX)/rules.d/19-footswitch.rules
42
endif
0 commit comments