From 4f923fbdace27f27421bf18dfc9655b73bd68929 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 13 Jun 2021 19:00:13 +0200 Subject: Move execution code into its own function and use from all tasks. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a7b0ee7..b3f91cb 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ all: libcppbuild.a cppbuild -libcppbuild.a: libcppbuild.cc libcppbuild.h task_cc.cc task_cc.h task_ld.cc task_ld.h task.h +libcppbuild.a: libcppbuild.cc libcppbuild.h task_cc.cc task_cc.h task_ld.cc task_ld.h task.h execute.cc execute.h g++ -g -std=c++17 libcppbuild.cc -c -o libcppbuild.o g++ -g -std=c++17 task_cc.cc -c -o task_cc.o g++ -g -std=c++17 task_ld.cc -c -o task_ld.o - ar rcs libcppbuild.a libcppbuild.o task_cc.o task_ld.o + g++ -g -std=c++17 execute.cc -c -o execute.o + ar rcs libcppbuild.a libcppbuild.o task_cc.o task_ld.o execute.o cppbuild: cppbuild.cc libcppbuild.h libcppbuild.a g++ -g -std=c++17 cppbuild.cc libcppbuild.a -pthread -o cppbuild -- cgit v1.2.3