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

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

.PHONY: clean

SRCS = bin2c.c

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

clean:
	$(RM) bin2c bin2c.exe