summaryrefslogtreecommitdiff
path: root/tools/gbagfx/Makefile
blob: e7f089445f6abf67db1923c0d47d4768f45041c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC = gcc

CFLAGS = -Wall -Wextra -std=c11 -O2

LIBS = -lz -lpng

SRCS = main.c convert_png.c gfx.c jasc_pal.c lz.c util.c font.c

.PHONY: clean

gbagfx: $(SRCS) convert_png.h gfx.h global.h jasc_pal.h lz.h util.h font.h
	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LIBS)

clean:
	$(RM) gbagfx gbagfx.exe