mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
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
|