freetype: delete Makefiles.
R=rsc, dave CC=golang-dev http://codereview.appspot.com/5629046
This commit is contained in:
parent
97fe2fb9c1
commit
1dee26bbb2
5 changed files with 3 additions and 64 deletions
23
Makefile
23
Makefile
|
@ -1,23 +0,0 @@
|
|||
# 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
|
3
README
3
README
|
@ -1,6 +1,9 @@
|
|||
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.
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
# 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
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
# 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
|
|
@ -1,13 +0,0 @@
|
|||
# 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
|
||||
|
Loading…
Reference in a new issue