summaryrefslogtreecommitdiff
path: root/tools/rsfont/Makefile
blob: 930a92b36ebe9b8d236c7d488d611295b2d3b986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC ?= gcc

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

LIBS = -lpng -lz

SRCS = main.c convert_png.c util.c font.c

.PHONY: all clean

all: rsfont
	@:

rsfont: $(SRCS) convert_png.h gfx.h global.h util.h font.h
	$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)

clean:
	$(RM) rsfont rsfont.exe