diff options
Diffstat (limited to 'store/works/life/linux-run/Makefile')
-rw-r--r-- | store/works/life/linux-run/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/store/works/life/linux-run/Makefile b/store/works/life/linux-run/Makefile new file mode 100644 index 0000000..7392db6 --- /dev/null +++ b/store/works/life/linux-run/Makefile @@ -0,0 +1,16 @@ +.PHONY: all test clean + +all: linux-run-test linux-run-test-bin + +linux-run-test: linux-run.h linux-run.cpp linux-run-test.cpp + g++ linux-run.cpp linux-run-test.cpp -o linux-run-test + +linux-run-test-bin: linux-run-test-bin.cpp + g++ linux-run-test-bin.cpp -o linux-run-test-bin + + +test: linux-run-test linux-run-test-bin + ./linux-run-test + +clean: + rm linux-run-test linux-run-test-bin |