2000-09-16 00:42:06 +02:00
|
|
|
#
|
|
|
|
# Link instructions for Dos-like systems (Dos, Win32, OS/2)
|
|
|
|
#
|
|
|
|
|
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_dos
|
|
|
|
distclean_project: distclean_project_dos
|
|
|
|
|
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
|
|
|
|
-$(CLEAN_LIBRARY) $(NO_OUTPUT)
|
|
|
|
endif
|
2001-09-10 15:11:52 +02:00
|
|
|
$(LINK_LIBRARY)
|
2000-09-16 00:42:06 +02:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
# EOF
|