From 7731613f50eb45e5af9cd96e05fc7e43dc3643d1 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 26 Aug 2021 21:03:06 +0200 Subject: Remove Makefile and add minimalistic README. --- Makefile | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile deleted file mode 100644 index 6358394..0000000 --- a/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -all: libcppbuild.a cppbuild - -SRC = \ - libcppbuild.cc \ - task_cc.cc \ - task_ld.cc \ - task_ar.cc \ - task_so.cc \ - task.cc \ - execute.cc \ - configure.cc \ - rebuild.cc \ - tasks.cc \ - build.cc \ - -OBJ = $(patsubst %.cc,%.o,$(SRC)) - -DEPFILES := $(patsubst %.cc,%.d,$(SRC)) -$(DEPFILES): - -include $(wildcard $(DEPFILES)) - -CXXFLAGS = -Wall -g -O3 -std=c++17 -I. - -%.o: %.cc - g++ -MMD $(CXXFLAGS) -c $< -o $@ - -libcppbuild.a: $(OBJ) - ar rcs $@ $(OBJ) - -cppbuild: libcppbuild.a - g++ $(CXXFLAGS) -pthread libcppbuild.a -o $@ - -clean: - rm -f libcppbuild.a $(OBJ) cppbuild $(DEPFILES) -- cgit v1.2.3