1 |
# $Id$ |
2 |
|
3 |
# Define Makefile variables specifying package libraries to link with |
4 |
|
5 |
# Package dependencies |
6 |
PKG_CC_INC_DIRS := ${NULL} |
7 |
PKG_CPP_INC_DIRS := ${NULL} |
8 |
PKG_LD_LIB_DIRS := ${NULL} |
9 |
PKG_LD_LIBS := ${NULL} |
10 |
|
11 |
# Include definitions which enable linking with any required package libraries |
12 |
ifneq (${strip ${PACKAGES}},) |
13 |
-include ${addprefix ${MAKE_DIR}/hosts/${HOSTNAME}/Makefile., ${PACKAGES}} |
14 |
endif |
15 |
|
16 |
# $Log$ |
17 |
# Revision 1.1 2004/10/26 06:53:58 jgs |
18 |
# Initial revision |
19 |
# |
20 |
# Revision 1.2 2004/09/23 01:48:45 jgs |
21 |
# make: augmented Makefiles with comments throughout |
22 |
# |
23 |
# Makefile.default - changed order of includes for clarity |
24 |
# Makfile.phony - reordered phony targets |
25 |
# - added target "all" - now first target to be encountered |
26 |
# |
27 |
# Revision 1.1.1.1 2004/06/24 04:00:39 johng |
28 |
# Initial version of eys using boost-python. |
29 |
# |
30 |
# Revision 1.2 2003/09/01 01:55:55 davies |
31 |
# Added SCSL 1.4.1pre makefile support. |
32 |
# |
33 |
# Revision 1.1.1.1 2003/08/21 00:58:20 davies |
34 |
# Imported sources from Lutz Gross. |
35 |
# |
36 |
|