summaryrefslogtreecommitdiff
path: root/tools/bin2c
diff options
context:
space:
mode:
authorgarak <garakmon@gmail.com>2019-07-29 13:06:45 -0400
committerGitHub <noreply@github.com>2019-07-29 13:06:45 -0400
commit5b57c001f5fe653542b6289540e3b6c6b67a8cfe (patch)
tree26a9ba631960bc56d01daca1777164801d4e0075 /tools/bin2c
parent54c635683c1d2573885987acc4e99728f38e5131 (diff)
parent136da953d6888562e76b0694a98988888adcd6d8 (diff)
Merge branch 'master' into navdata
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 73f78980e..ab11e1b61 100644
--- a/tools/bin2c/Makefile
+++ b/tools/bin2c/Makefile
@@ -2,10 +2,13 @@ CC = gcc
CFLAGS = -Wall -Wextra -Werror -std=c11 -O2
-.PHONY: clean
+.PHONY: all clean
SRCS = bin2c.c
+all: bin2c
+ @:
+
bin2c: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)