diff options
author | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-08-03 06:59:28 +0800 |
---|---|---|
committer | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-08-03 06:59:28 +0800 |
commit | 26a71921863214c4eb0af3f8320c321b51d0102e (patch) | |
tree | c39d533ff9ac7af61b69507577493316f3ffc4ea /tools/bin2c | |
parent | 6a063cf74ad8168e9080c1f3be20e5dfe3c3187c (diff) | |
parent | d58bf398b2b83a326d23d14d531de7f45a1058bb (diff) |
Merge branch 'master' into battle
Diffstat (limited to 'tools/bin2c')
-rw-r--r-- | tools/bin2c/Makefile | 5 |
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) |