From 99e2e923d0c77b02f3fb4ff648ea916954868606 Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 28 Feb 2025 23:13:39 +0800 Subject: chore(store): move everything to store. --- store/works/life/linux-run/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 store/works/life/linux-run/Makefile (limited to 'store/works/life/linux-run/Makefile') 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 -- cgit v1.2.3