mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
17 lines
195 B
Makefile
17 lines
195 B
Makefile
CC ?= gcc
|
|
|
|
CFLAGS = -Wall -Wextra -Werror -std=c11 -O2
|
|
|
|
.PHONY: all clean
|
|
|
|
SRCS = bin2c.c
|
|
|
|
all: bin2c
|
|
@:
|
|
|
|
bin2c: $(SRCS)
|
|
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) bin2c bin2c.exe
|