mirror of https://github.com/pret/pokeemerald.git
16 lines
300 B
Makefile
16 lines
300 B
Makefile
|
CC = gcc
|
||
|
|
||
|
CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -s -DPNG_SKIP_SETJMP_CHECK
|
||
|
|
||
|
LIBS = -lpng -lz
|
||
|
|
||
|
SRCS = main.c convert_png.c util.c font.c
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
rsfont: $(SRCS) convert_png.h gfx.h global.h util.h font.h
|
||
|
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
|
||
|
|
||
|
clean:
|
||
|
$(RM) rsfont rsfont.exe
|