From 6ff1426abed52c9642a6ccd5a6eda7210d0637e7 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Tue, 23 Jul 2019 16:17:00 -0400 Subject: Quieter "make tools" --- tools/bin2c/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/bin2c') 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) -- cgit v1.2.3