pokeemerald/tools/bin2c/Makefile

17 lines
194 B
Makefile
Raw Normal View History

2017-12-04 02:55:01 +01:00
CC = gcc
CFLAGS = -Wall -Wextra -Werror -std=c11 -O2
2017-12-04 02:55:01 +01:00
2019-07-23 22:17:00 +02:00
.PHONY: all clean
2017-12-04 02:55:01 +01:00
SRCS = bin2c.c
2019-07-23 22:17:00 +02:00
all: bin2c
@:
2017-12-04 02:55:01 +01:00
bin2c: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) bin2c bin2c.exe