pokeemerald/tools/rsfont/Makefile

19 lines
319 B
Makefile
Raw Normal View History

CC ?= gcc
2017-12-04 02:55:01 +01:00
CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK
2017-12-04 02:55:01 +01:00
LIBS = -lpng -lz
SRCS = main.c convert_png.c util.c font.c
2019-07-23 22:17:00 +02:00
.PHONY: all clean
all: rsfont
@:
2017-12-04 02:55:01 +01:00
rsfont: $(SRCS) convert_png.h gfx.h global.h util.h font.h
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
clean:
$(RM) rsfont rsfont.exe