mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-31 06:30:52 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@103 b9cfdab3-6d41-4d17-bbe4-086880011989
21 lines
255 B
Makefile
21 lines
255 B
Makefile
# $Id$
|
|
|
|
CC = gcc
|
|
CFLAGS = `freetype-config --cflags`
|
|
LDFLAGS =
|
|
LIBS = `freetype-config --libs`
|
|
|
|
.PHONY: all clean
|
|
.SUFFIXES: .c .o
|
|
|
|
all: font
|
|
|
|
font: font.o
|
|
$(CC) $(LDFLAGS) -o $@ font.o $(LIBS)
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f *.o font
|