summaryrefslogtreecommitdiff
path: root/tools/bin2c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bin2c')
-rw-r--r--tools/bin2c/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/bin2c/Makefile b/tools/bin2c/Makefile
index 4cc23a25a..dd4e537a2 100644
--- a/tools/bin2c/Makefile
+++ b/tools/bin2c/Makefile
@@ -2,10 +2,13 @@ CC = gcc
CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -s
-.PHONY: clean
+.PHONY: all clean
SRCS = bin2c.c
+all: bin2c
+ @:
+
bin2c: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)