2000-09-16 00:42:06 +02:00
|
|
|
#
|
|
|
|
# Link instructions for standard systems
|
|
|
|
#
|
|
|
|
|
2000-10-17 05:38:43 +02:00
|
|
|
|
|
|
|
# Copyright 1996-2000 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.
|
|
|
|
|
|
|
|
|
2000-09-16 00:42:06 +02:00
|
|
|
ifdef BUILD_PROJECT
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
.PHONY: clean_project distclean_project
|
|
|
|
|
2000-09-16 00:42:06 +02:00
|
|
|
# Now include the main sub-makefile. It contains all the rules used to
|
|
|
|
# build the library with the previous variables defined.
|
|
|
|
#
|
|
|
|
include $(TOP)/builds/$(PROJECT).mk
|
|
|
|
|
|
|
|
# The cleanup targets.
|
|
|
|
#
|
|
|
|
clean_project: clean_project_std
|
|
|
|
distclean_project: distclean_project_std
|
|
|
|
|
2000-10-31 21:42:18 +01:00
|
|
|
# This final rule is used to link all object files into a single library.
|
2000-10-03 19:51:29 +02:00
|
|
|
# this is compiler-specific
|
2000-09-16 00:42:06 +02:00
|
|
|
#
|
|
|
|
$(PROJECT_LIBRARY): $(OBJECTS_LIST)
|
2000-11-01 21:27:13 +01:00
|
|
|
ifdef CLEAN_LIBRARY
|
* include/freetype/fttrigon.h, src/base/fttrigon.c, src/base/ftbase.c,
src/base/Jamfile, src/base/rules.mk: adding trigonometric functions
to the core API (using Cordic algorithms).
* builds/top_level.mk, builds/newline, builds/detect.mk: fixed problems
with Make on Windows 2000, as well as problems when "make distclean" is
invoked on a non-Unix platform when there is no "config.mk" in the
current directory..
* builds/freetype.mk: fixed a problem with object deletions under
Dos/Windows/OS/2 systems
* src/tools: added new directory to hold tools and test programs
moved docmaker.py, glnames.py to it..
* src/tools/docmaker.py: improved the script to add the current date
at the footer of each web page (useful to distinguish between versions)
* Jamfile: fixed incorrect HDRMACRO argument.
* TODO: removed the cubic arc bbox computation note, since it has been
fixed recently..
* include/freetype/t1tables.h, include/freetype/config/ftoption.h:
formatting
2001-05-11 16:25:57 +02:00
|
|
|
-$(CLEAN_LIBRARY) xx $(NO_OUTPUT)
|
2000-11-01 21:27:13 +01:00
|
|
|
endif
|
|
|
|
$(LINK_LIBRARY)
|
2000-09-16 00:42:06 +02:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
# EOF
|