summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/Makefile b/tools/Makefile
index accee0f..8a9a284 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -1,6 +1,5 @@
.PHONY: all clean
-CC := gcc
CFLAGS := -O3 -std=c99 -Wall -Wextra
tools := \
@@ -9,11 +8,6 @@ tools := \
gfx
all: $(tools)
- @:
clean:
rm -f $(tools)
-
-%: %.c
- $(CC) $(CFLAGS) -o $@ $<
-