AppLibs 2.44 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright 2008 Castle Technology Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Makefile fragment for libraries linked against RAM applications
Ben Avison's avatar
Ben Avison committed
16 17 18

INCLUDED_APPLIBS = YES

19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#
STDMAKEFILE=$Id$
#

ANSILIB   = CLIB:o.ansilib
CLIB      = CLIB:o.stubs
RLIB      = RISCOSLIB:o.risc_oslib
RSTUBS    = RISCOSLIB:o.rstubs
ROMSTUBS  = RISCOSLIB:o.romstubs
ROMCSTUBS = RISCOSLIB:o.romcstubs
ABSSYM    = RISC_OSLib:o.abssym
C_ABSSYM  = RISC_OSLib:o.c_abssym
A_ABSSYM  = RISC_OSLib:o.a_abssym

ASMUTILS  = C:AsmUtils.o.AsmUtils
C++LIB    = C:C++Lib.o.c++lib
35
CLXLIB    = C:CLX.o.clxlib
36 37 38 39 40 41 42

TBOXLIB   = C:tboxlibs.o.toolboxlib
FLEXLIB   = C:tboxlibs.o.flexlib
EVENTLIB  = C:tboxlibs.o.eventlib
WIMPLIB   = C:tboxlibs.o.wimplib
RENDERLIB = C:tboxlibs.o.renderlib
TBOXLIBS  = ${EVENTLIB} ${TBOXLIB} ${RENDERLIB} ${WIMPLIB}
43 44
TBOXINTLIB = _!_x_!_
TBOXINTDBGLIB = _!_x_!_
45 46 47 48 49 50 51 52 53 54 55 56

SOCK4LIB  = TCPIPLibs:o.socklib
SOCK5LIB  = TCPIPLibs:o.socklib5
INETLIB   = TCPIPLibs:o.inetlib
UNIXLIB   = TCPIPLibs:o.unixlib
RPCLIB    = TCPIPLibs:rpc.o.rpc_data TCPIPLibs:rpc.o.rpclib
CRYPTLIB  = C:SSLeay.o.ssl C:SSLeay.o.libcrypto

NET4LIBS  = ${UNIXLIB} ${INETLIB} ${SOCK4LIB} 
NET5LIBS  = ${UNIXLIB} ${INETLIB} ${SOCK5LIB} 

ABCLIB    = C:ABCLib.o.ABCLib
Robert Sprowson's avatar
Robert Sprowson committed
57
CALLXLIB  = _!_x_!_
58
CONLIB    = C:ConfigLib.o.ConfigLib
59 60 61 62 63
DDTLIB    = C:DDTLib.o.DDTLib
DESKLIB   = C:Desk.o.Desk
FETCHLIB  = C:Fetchers.o.FetchLibZM
JSLIB     = C:JSLib.o.JSLib
LDAPLIBS  = C:LDAP.o.LDAP C:LDAP.o.LBER
Robert Sprowson's avatar
Robert Sprowson committed
64
MODMALLOCLIB = C:ModMalloc.o.ModMalloc
65 66 67
NCMALIB   = C:NCMALib.o.NCMALib
NSPRLIB   = C:NSPRLib.o.NSPRLib
OSLIB     = C:OSLib.o.OSLib
68 69 70
PDEBUGLIB = C:PDebug.o.PDebug
PRISMLIB  = C:PRISMLib.o.PRISMLib
REMOTEDBLIB = C:remotedb.o.remotedb
Robert Sprowson's avatar
Robert Sprowson committed
71
RMVSN     = C:RMVersion.o.RMVersion
72
SYNCLIB   = C:SyncLib.o.SyncLib
73
TGRLIB    = C:TGRLib.o.tgrlib
74 75
TRACELIB  = C:Trace.o.Trace
UNICODELIB = C:Unicode.o.ucode
76 77 78
WILDLIB   = C:Wild.o.Wild

DEBUGLIB  = C:DebugLib.o.DebugLib
79
DEBUGLIBS = ${DEBUGLIB} ${REMOTEDBLIB} ${TRACELIB} ${PDEBUGLIB} ${MODMALLOCLIB} ${WILDLIB} ${DDTLIB} ${DESKLIB}
80 81

# EOF