summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-10-20 11:50:24 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-10-20 11:50:24 +0000
commitae412569bd091f2ba5b7323a86382c6095f7e35f (patch)
tree8be13821e004df938c43a6fb1adc12b9c96fe00a /Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk
parent784d0322464c748d7f9f43c8d41f7feea7b22199 (diff)
freetype2 2.4.7
git-svn-id: svn://tug.org/texlive/trunk@24339 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk')
-rw-r--r--Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk41
1 files changed, 41 insertions, 0 deletions
diff --git a/Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk b/Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk
new file mode 100644
index 00000000000..24a0878862a
--- /dev/null
+++ b/Build/source/libs/freetype2/freetype-2.4.7/builds/beos/detect.mk
@@ -0,0 +1,41 @@
+#
+# FreeType 2 configuration file to detect an BeOS host platform.
+#
+
+
+# Copyright 1996-2000, 2003, 2006 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT. By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+.PHONY: setup
+
+
+ifeq ($(PLATFORM),ansi)
+
+ ifdef BE_HOST_CPU
+
+ PLATFORM := beos
+
+ endif # test MACHTYPE beos
+endif
+
+ifeq ($(PLATFORM),beos)
+
+ DELETE := rm -f
+ CAT := cat
+ SEP := /
+ BUILD_DIR := $(TOP_DIR)/builds/beos
+ CONFIG_FILE := beos.mk
+
+ setup: std_setup
+
+endif # test PLATFORM beos
+
+
+# EOF