From 1dee26bbb2118118ce3001a230ddba7ad690991a Mon Sep 17 00:00:00 2001 From: Nigel Tao Date: Sat, 4 Feb 2012 09:32:01 +1100 Subject: [PATCH] freetype: delete Makefiles. R=rsc, dave CC=golang-dev http://codereview.appspot.com/5629046 --- Makefile | 23 ----------------------- README | 3 +++ freetype/Makefile | 13 ------------- freetype/raster/Makefile | 15 --------------- freetype/truetype/Makefile | 13 ------------- 5 files changed, 3 insertions(+), 64 deletions(-) delete mode 100644 Makefile delete mode 100644 freetype/Makefile delete mode 100644 freetype/raster/Makefile delete mode 100644 freetype/truetype/Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 5a5d4ad..0000000 --- a/Makefile +++ /dev/null @@ -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 diff --git a/README b/README index 936b3f0..90fefd5 100644 --- a/README +++ b/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. diff --git a/freetype/Makefile b/freetype/Makefile deleted file mode 100644 index c3232f6..0000000 --- a/freetype/Makefile +++ /dev/null @@ -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 - diff --git a/freetype/raster/Makefile b/freetype/raster/Makefile deleted file mode 100644 index 7ba5d34..0000000 --- a/freetype/raster/Makefile +++ /dev/null @@ -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 diff --git a/freetype/truetype/Makefile b/freetype/truetype/Makefile deleted file mode 100644 index 2e0b3c2..0000000 --- a/freetype/truetype/Makefile +++ /dev/null @@ -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 -