linux-wifi-hotspot/Makefile

14 lines
250 B
Makefile
Raw Normal View History

2019-04-14 17:01:15 +00:00
PREFIX=/usr
MANDIR=$(PREFIX)/share/man
BINDIR=$(PREFIX)/bin
all:
@echo "Run 'make install' for installation."
@echo "Run 'make uninstall' for uninstallation."
install:
$(MAKE) -C src/scripts install
uninstall:
$(MAKE) -C src/scripts uninstall