Files
milsko/tools/Makefile
NishiOwO 98360d3a3c stuff
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@103 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-01 10:19:33 +00:00

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