aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/freetype2/src/autohint/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'nx-X11/extras/freetype2/src/autohint/Jamfile')
-rw-r--r--nx-X11/extras/freetype2/src/autohint/Jamfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/nx-X11/extras/freetype2/src/autohint/Jamfile b/nx-X11/extras/freetype2/src/autohint/Jamfile
new file mode 100644
index 000000000..a129e5eea
--- /dev/null
+++ b/nx-X11/extras/freetype2/src/autohint/Jamfile
@@ -0,0 +1,21 @@
+# FreeType 2 src/autohint Jamfile (c) 2001 David Turner
+#
+
+SubDir FT2_TOP $(FT2_SRC_DIR) autohint ;
+
+{
+ local _sources ;
+
+ if $(FT2_MULTI)
+ {
+ _sources = ahangles ahglobal ahglyph ahhint ahmodule ;
+ }
+ else
+ {
+ _sources = autohint ;
+ }
+
+ Library $(FT2_LIB) : $(_sources).c ;
+}
+
+# end of src/autohint Jamfile