stuff
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@103 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
9655639fd5
commit
98360d3a3c
2 changed files with 148 additions and 128 deletions
20
tools/Makefile
Normal file
20
tools/Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue