mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-07 09:59:45 +00:00
stuff
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@103 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
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
|
||||||
Reference in New Issue
Block a user