freetype/Makefile
Nigel Tao 2af394dab9 freetype: clarify that the GPL licence is "version 2 or later", not
just version 2. The FTL (Freetype Licence) is still available. This
matches the original Freetype library (written in C).

This only expands and does not further restrict the licensing options
available to users of the freetype-go library.

R=adg
CC=golang-dev
http://codereview.appspot.com/1731049
2010-08-03 11:07:23 +10:00

24 lines
638 B
Makefile

# 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.$(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