freetype/tests/Makefile

21 lines
344 B
Makefile
Raw Normal View History

2017-08-28 16:56:55 -07:00
TOP_DIR := ..
2017-08-08 23:55:00 -07:00
BUILD_DIR := $(TOP_DIR)/builds/unix
2017-06-28 11:00:44 +05:30
2017-08-08 23:55:00 -07:00
include $(TOP_DIR)/builds/unix/unix-def.mk
2017-06-28 11:00:44 +05:30
SRC_SPRITE = make_sprite.c bitmap.c murmur3.c
2017-06-28 11:00:44 +05:30
CFLAGS = -Wall -g
CC = gcc
2017-08-08 23:55:00 -07:00
INCLUDE = -I $(includedir)/freetype2
2017-08-29 00:20:40 -07:00
LIBS = -lpng -ldl
2017-06-28 11:00:44 +05:30
2017-08-08 23:55:00 -07:00
all: tests
2017-06-29 01:59:00 +05:30
tests: $(SRC_SPRITE)
2017-08-26 03:55:05 -07:00
$(CC) $(CFLAGS) $(INCLUDE) -o $@ $^ $(LIBS)
2017-08-08 23:55:00 -07:00
.PHONY: clean force
2017-06-28 11:00:44 +05:30
clean:
-rm -f *.o