summaryrefslogtreecommitdiff
path: root/tools/bin2c/Makefile
blob: 4cc23a25a3eaab0ebcce68b8f149c0a4c7bd315f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = gcc

CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -s

.PHONY: clean

SRCS = bin2c.c

bin2c: $(SRCS)
	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)

clean:
	$(RM) bin2c bin2c.exe