Rename old Makfile to compatible with cmake

This commit is contained in:
Lakindu Akash 2020-10-04 15:53:45 +05:30
parent 2bd6c741ae
commit ef6794bec3
No known key found for this signature in database
GPG Key ID: 87D9889F7A634A38

15
Makefile.cmake Normal file
View File

@ -0,0 +1,15 @@
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