提交 1dee26bb 编写于 作者: N Nigel Tao

freetype: delete Makefiles.

R=rsc, dave
CC=golang-dev
http://codereview.appspot.com/5629046
上级 97fe2fb9
# 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 (or
# any later version), both of which can be found in the LICENSE file.
include $(GOROOT)/src/Make.inc
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
This is a port of the Freetype font rasterizer (www.freetype.org) to the Go
programming language (golang.org).
To download and install from source:
$ go get code.google.com/p/freetype-go/freetype
It is an incomplete port:
* It only supports TrueType fonts, and not Type 1 fonts nor bitmap fonts.
* It only supports the Unicode encoding.
......
# 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 (or
# any later version), both of which can be found in the LICENSE file.
include $(GOROOT)/src/Make.inc
TARG=code.google.com/p/freetype-go/freetype
GOFILES=\
freetype.go\
include $(GOROOT)/src/Make.pkg
# 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 (or
# any later version), both of which can be found in the LICENSE file.
include $(GOROOT)/src/Make.inc
TARG=code.google.com/p/freetype-go/freetype/raster
GOFILES=\
geom.go\
paint.go\
raster.go\
stroke.go\
include $(GOROOT)/src/Make.pkg
# 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 (or
# any later version), both of which can be found in the LICENSE file.
include $(GOROOT)/src/Make.inc
TARG=code.google.com/p/freetype-go/freetype/truetype
GOFILES=\
truetype.go\
include $(GOROOT)/src/Make.pkg
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册