freetype2/tests/Makefile

21 lines
364 B
Makefile
Raw Normal View History

2017-08-09 08:55:00 +02:00
TOP_DIR := ../..
BUILD_DIR := $(TOP_DIR)/builds/unix
2017-06-28 07:30:44 +02:00
2017-08-09 08:55:00 +02:00
include $(TOP_DIR)/builds/unix/unix-def.mk
2017-06-28 07:30:44 +02:00
SRC_SPRITE = make_sprite.c bitmap.c murmur3.c
2017-06-28 07:30:44 +02:00
CFLAGS = -Wall -g
CC = gcc
2017-08-09 08:55:00 +02:00
INCLUDE = -I $(includedir)/freetype2
LIBS = -lpng -lharfbuzz -lbz2 -ldl
2017-06-28 07:30:44 +02:00
2017-08-09 08:55:00 +02:00
all: tests
2017-06-28 22:29:00 +02:00
tests: $(SRC_SPRITE)
2017-08-26 12:55:05 +02:00
$(CC) $(CFLAGS) $(INCLUDE) -o $@ $^ $(LIBS)
2017-08-09 08:55:00 +02:00
.PHONY: clean force
2017-06-28 07:30:44 +02:00
clean:
-rm -f *.o