diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-07-30 19:50:52 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-07-30 19:50:52 -0400 |
commit | 23d917f7c89c1256f1e935a57d490816fd916f55 (patch) | |
tree | 7aa6a6b918dd3fc0b67818d4fbec03fb26b733a7 /tools/bin2c | |
parent | 1a34a06758175b4d39ee0a81c3441ac958d005fd (diff) |
Quieter `make tools`
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) |