AppLibs 2.17 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#
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
CLXLIB    = C:CLX.o.clxlib
C++LIB    = C:C++Lib.o.c++lib

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}

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
CALLXLIB  = C:callx.o.callx
56
CONLIB    = C:ConfigLib.o.ConfigLib
57 58 59 60 61 62 63 64 65
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
MODMALLOCLIB = C:ModMalloc.o.Lib
NCMALIB   = C:NCMALib.o.NCMALib
NSPRLIB   = C:NSPRLib.o.NSPRLib
OSLIB     = C:OSLib.o.OSLib
66
SYNCLIB   = C:SyncLib.o.SyncLib
67 68 69 70 71 72 73
TGRLIB    = C:TGRLib.o.tgrlib
WILDLIB   = C:Wild.o.Wild

DEBUGLIB  = C:DebugLib.o.DebugLib
DEBUGLIBS = ${DEBUGLIB} ${MODMALLOCLIB} ${WILDLIB} ${DDTLIB} ${DESKLIB}

# EOF