summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-06 04:07:53 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-06 04:07:53 +0300
commit34582543f6cd5ae65fc2b8ee6ae7ac1ce491d49e (patch)
tree22e2470ed700e35c8e0783fabef92a5990b93e40 /Makefile
parentAdd readme (diff)
downloadnheko-34582543f6cd5ae65fc2b8ee6ae7ac1ce491d49e.tar.xz
Add missing Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644

index 00000000..d42d768b --- /dev/null +++ b/Makefile
@@ -0,0 +1,11 @@ +run: build + @./build/nheko + +build: + @cmake -H. -Bbuild + @make -C build + +clean: + rm -rf build + +.PHONY: build