diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-06 04:07:53 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-06 04:07:53 +0300 |
commit | 34582543f6cd5ae65fc2b8ee6ae7ac1ce491d49e (patch) | |
tree | 22e2470ed700e35c8e0783fabef92a5990b93e40 /Makefile | |
parent | Add readme (diff) | |
download | nheko-34582543f6cd5ae65fc2b8ee6ae7ac1ce491d49e.tar.xz |
Add missing Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
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 |