From f2327ada5590f40137416f301762cd3c11ab36b6 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Fri, 8 Feb 2019 13:31:11 +0100 Subject: s/target/allocator/ and remove analyse feature Use systemwide installed allocators by default --- targets/Makefile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 targets/Makefile (limited to 'targets') diff --git a/targets/Makefile b/targets/Makefile deleted file mode 100644 index 5df4999..0000000 --- a/targets/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -OBJDIR ?= obj - -CC ?= gcc - -WARNFLAGS ?= -Wall -Wextra -COMMONFLAGS ?= -fno-builtin -fPIC -DPIC -pthread -OPTFLAGS ?= -O3 -DNDEBUG - -CFLAGS ?= $(OPTFLAGS) $(WARNFLAGS) $(COMMONFLAGS) - -LDFLAGS ?= -pthread -static-libgcc - -.PHONY: all clean - -all: $(OBJDIR) - @echo building targets - -$(OBJDIR): - mkdir $@ - -clean: - rm -rf $(OBJDIR) -- cgit v1.2.3