pokeemerald/tools/bin2c/Makefile

14 lines
177 B
Makefile
Raw Normal View History

2017-12-04 02:55:01 +01:00
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