diff --git a/.gitignore b/.gitignore index 2ee2b7d..5e3f69c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.swp # binaries scythe +scythe2 footswitch diff --git a/Makefile b/Makefile index 77c8614..8167ce2 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,7 @@ install: all $(INSTALL) -d $(DESTDIR)$(PREFIX)/bin $(INSTALL) footswitch $(DESTDIR)$(PREFIX)/bin $(INSTALL) scythe $(DESTDIR)$(PREFIX)/bin + $(INSTALL) scythe2 $(DESTDIR)$(PREFIX)/bin ifeq ($(UNAME), Linux) $(INSTALL) -d $(DESTDIR)$(UDEVPREFIX)/rules.d $(INSTALLDATA) 19-footswitch.rules $(DESTDIR)$(UDEVPREFIX)/rules.d @@ -35,6 +36,7 @@ endif uninstall: rm -f $(DESTDIR)$(PREFIX)/bin/footswitch rm -f $(DESTDIR)$(PREFIX)/bin/scythe + rm -f $(DESTDIR)$(PREFIX)/bin/scythe2 ifeq ($(UNAME), Linux) rm -f $(DESTDIR)$(UDEVPREFIX)/rules.d/19-footswitch.rules endif