git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@103 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-01 10:19:33 +00:00
parent 9655639fd5
commit 98360d3a3c
2 changed files with 148 additions and 128 deletions

20
tools/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# $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