diff options
author | crupest <crupest@outlook.com> | 2023-02-06 00:09:57 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-02-06 00:09:57 +0800 |
commit | a207604826d5b4eb1a230adc2c201fdc478b2678 (patch) | |
tree | 65af79b53ef392e8ddaff2c09ad22f47dccfffb6 /works/life/linux-run/Makefile | |
parent | 82ca9e11965bce800ed5d500ab9c7dbc9ac3aa77 (diff) | |
download | crupest-a207604826d5b4eb1a230adc2c201fdc478b2678.tar.gz crupest-a207604826d5b4eb1a230adc2c201fdc478b2678.tar.bz2 crupest-a207604826d5b4eb1a230adc2c201fdc478b2678.zip |
import(life): Add linux-run.
Diffstat (limited to 'works/life/linux-run/Makefile')
-rw-r--r-- | works/life/linux-run/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/works/life/linux-run/Makefile b/works/life/linux-run/Makefile new file mode 100644 index 0000000..7392db6 --- /dev/null +++ b/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 |