aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/realloc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/realloc/Makefile')
-rw-r--r--src/benchmarks/realloc/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/benchmarks/realloc/Makefile b/src/benchmarks/realloc/Makefile
deleted file mode 100644
index 66b38ca..0000000
--- a/src/benchmarks/realloc/Makefile
+++ /dev/null
@@ -1,25 +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)/realloc
-
-$(OBJDIR)/realloc: realloc.c | $(OBJDIR)
- @echo compiling $@...
- $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
-
-$(OBJDIR):
- mkdir -p $@
-
-clean:
- rm -rf $(OBJDIR)