Add missing Makefile

This commit is contained in:
Konstantinos Sideris 2017-04-06 04:07:53 +03:00
parent 227a46c32a
commit 34582543f6
2 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -26,7 +26,6 @@ CMakeLists.txt.user
moc_*.cpp
qrc_*.cpp
ui_*.h
Makefile*
*-build-*
# QtCreator

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
run: build
@./build/nheko
build:
@cmake -H. -Bbuild
@make -C build
clean:
rm -rf build
.PHONY: build