aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
Diffstat (limited to 'targets')
-rw-r--r--targets/Makefile22
1 files changed, 0 insertions, 22 deletions
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)