mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-10 06:00:11 +00:00
22 lines
361 B
Makefile
22 lines
361 B
Makefile
all:
|
|
mkdir -p build
|
|
@echo "Run 'sudo make install' for installation."
|
|
@echo "Run 'sudo make uninstall' for uninstallation."
|
|
cd src && $(MAKE)
|
|
|
|
install:
|
|
@echo "Installing..."
|
|
cd src && $(MAKE) install
|
|
|
|
uninstall:
|
|
@echo "Uninstalling..."
|
|
cd src && $(MAKE) uninstall
|
|
|
|
clean-old:
|
|
cd src && $(MAKE) clean-old
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
cd src && $(MAKE) clean
|