mirror of
https://github.com/lakinduakash/linux-wifi-hotspot.git
synced 2024-11-10 14:10:10 +00:00
16 lines
443 B
CMake
16 lines
443 B
CMake
all:
|
|
@echo "Run 'make install' for installation."
|
|
@echo "Run 'make uninstall' for uninstallation."
|
|
mkdir -p build
|
|
cd build && cmake -G "CodeBlocks - Unix Makefiles" ../src
|
|
|
|
install:
|
|
@echo "Installing"
|
|
cd build && cmake -DCMAKE_INSTALL_PREFIX=$(DESTDIR) -G "CodeBlocks - Unix Makefiles" ../src
|
|
$(MAKE) -C src/scripts install
|
|
$(MAKE) -C build install_build
|
|
|
|
uninstall:
|
|
$(MAKE) -C src/scripts uninstall
|
|
$(MAKE) -C build uninstall_build
|