pokeemerald/tools/gbagfx/Makefile

19 lines
367 B
Makefile
Raw Normal View History

CC ?= gcc
2017-12-04 02:55:01 +01:00
2018-10-17 14:55:09 +02: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 gfx.c jasc_pal.c lz.c rl.c util.c font.c
.PHONY: all clean
all: gbagfx
@:
2017-12-04 02:55:01 +01:00
gbagfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h rl.h util.h font.h
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
clean:
$(RM) gbagfx gbagfx.exe