mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-21 19:40:11 +00:00
14 lines
250 B
Makefile
14 lines
250 B
Makefile
|
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
|