summaryrefslogtreecommitdiff
path: root/tools/bin2c
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-04-09 08:32:02 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2018-04-09 08:32:02 -0400
commit86d8f1762df0977e060f740381529e466a2074d3 (patch)
tree972f9dfa137e4ae778353b7a038f898628f8ef9e /tools/bin2c
parente651e6a7847bb8f1a55506c8f7729176f84fabf9 (diff)
parent562dcc4bcdc14d5b6c0bb2a638410156945cdd41 (diff)
Merge branch 'master' into unk_debug_menu_3
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)