Official mirror of https://gitlab.freedesktop.org/freetype/freetype
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
364 B
21 lines
364 B
8 years ago
|
TOP_DIR := ../..
|
||
|
BUILD_DIR := $(TOP_DIR)/builds/unix
|
||
8 years ago
|
|
||
8 years ago
|
include $(TOP_DIR)/builds/unix/unix-def.mk
|
||
8 years ago
|
|
||
8 years ago
|
SRC_SPRITE = make_sprite.c bitmap.c murmur3.c
|
||
|
|
||
8 years ago
|
CFLAGS = -Wall -g
|
||
|
CC = gcc
|
||
8 years ago
|
INCLUDE = -I $(includedir)/freetype2
|
||
8 years ago
|
LIBS = -lpng -lharfbuzz -lbz2 -ldl
|
||
8 years ago
|
|
||
8 years ago
|
all: tests
|
||
8 years ago
|
|
||
8 years ago
|
tests: $(SRC_SPRITE)
|
||
8 years ago
|
$(CC) $(CFLAGS) $(INCLUDE) -o $@ $^ $(LIBS)
|
||
8 years ago
|
|
||
8 years ago
|
.PHONY: clean force
|
||
8 years ago
|
clean:
|
||
|
-rm -f *.o
|