freetype: Add top-level Makefile.

R=r
CC=golang-dev
http://codereview.appspot.com/1725049
This commit is contained in:
Nigel Tao 2010-07-05 21:36:35 +10:00
parent 3e38a96419
commit 05e3a903e8
1 changed files with 23 additions and 0 deletions

23
Makefile Normal file
View File

@ -0,0 +1,23 @@
# Copyright 2010 The Freetype-Go Authors. All rights reserved.
# Use of this source code is governed by your choice of either the
# FreeType License or the GNU General Public License version 2,
# both of which can be found in the LICENSE file.
include $(GOROOT)/src/Make.$(GOARCH)
all: install
install:
cd freetype/raster && make install
cd freetype/truetype && make install
cd freetype && make install
clean:
cd freetype/raster && make clean
cd freetype/truetype && make clean
cd freetype && make clean
nuke:
cd freetype/raster && make nuke
cd freetype/truetype && make nuke
cd freetype && make nuke