diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2019-10-26 22:19:56 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2019-12-10 21:29:28 +0100 |
commit | 361891f25ca735fd85db64a14823cc55b8a0619a (patch) | |
tree | d45734fbc123d8dcb26128b314eb4453ecdd154e /Makefile | |
parent | 1a1b36dea942cd7b18067f3f1220c9ab4f9b4448 (diff) |
Basic object encoding and storage
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 0000000..acf2c19 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: build/Makefile + +make -C build +.PHONY: all + +build/Makefile: + mkdir -p build + (cd build; cmake ..) + +clean: + rm -rf build +.PHONY: clean |