From: Kidong L. <bri...@us...> - 2004-06-13 00:50:10
|
Update of /cvsroot/syncml-ctoolkit/toolkit/src/bld/palm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27519/bld/palm Modified Files: Makefile Added Files: libsml.def Log Message: Attached macro in the end of function prototypes to build on PalmOS/prc-tools --- NEW FILE: libsml.def --- syslib {"libsml.so" lsml} multiple code {"lib" "mgr" "wsm" "xlt"} export { smlAddCmd smlAlertCmd smlAllocAdd smlAllocAlert smlAllocAtomic smlAllocChal smlAllocCopy smlAllocCred smlAllocDelete smlAllocDevInfCTCap smlAllocDevInfCTData smlAllocDevInfCTDataList smlAllocDevInfCTDataProp smlAllocDevInfCTDataPropList smlAllocDevInfCtcapList smlAllocDevInfDSMem smlAllocDevInfDatastore smlAllocDevInfDatastoreList smlAllocDevInfDevInf smlAllocDevInfExt smlAllocDevInfExtList smlAllocDevInfSyncCap smlAllocDevInfXmit smlAllocDevInfXmitList smlAllocExec smlAllocGeneric smlAllocGet smlAllocItem smlAllocItemList smlAllocMap smlAllocMapItem smlAllocMapItemList smlAllocMetInfAnchor smlAllocMetInfMem smlAllocMetInfMetInf smlAllocPcdata smlAllocPcdataList smlAllocPut smlAllocReplace smlAllocResults smlAllocSearch smlAllocSequence smlAllocSource smlAllocSourceList smlAllocSourceRefList smlAllocStatus smlAllocSync smlAllocSyncHdr smlAllocTarget smlAllocTargetRefList smlAllocUnknownProtoElement smlCopyCmd smlDeleteCmd smlEndAtomic smlEndMessage smlEndSequence smlEndSync smlExecCmd smlFreeAlert smlFreeAtomic smlFreeChalPtr smlFreeCredPtr smlFreeDevInfCTCap smlFreeDevInfCTData smlFreeDevInfCTDataList smlFreeDevInfCTDataProp smlFreeDevInfCTDataPropList smlFreeDevInfCtcapList smlFreeDevInfDSMem smlFreeDevInfDatastore smlFreeDevInfDatastoreList smlFreeDevInfDevInf smlFreeDevInfExt smlFreeDevInfExtList smlFreeDevInfSynccap smlFreeDevInfXmit smlFreeDevInfXmitList smlFreeExec smlFreeGeneric smlFreeGetPut smlFreeItemList smlFreeItemPtr smlFreeMap smlFreeMapItemList smlFreeMapItemPtr smlFreeMetinfAnchor smlFreeMetinfMem smlFreeMetinfMetinf smlFreePcdata smlFreePcdataList smlFreeProtoElement smlFreeResults smlFreeSearch smlFreeSourceList smlFreeSourceRefList smlFreeSourceTargetPtr smlFreeStatus smlFreeSync smlFreeSyncHdr smlFreeTargetRefList smlGetCmd smlGetFreeBuffer smlInit smlInitInstance smlLibFree smlLibMalloc smlLibMemcmp smlLibMemcpy smlLibMemmove smlLibMemset smlLibPrint smlLibRealloc smlLibStrcat smlLibStrchr smlLibStrcmp smlLibStrcpy smlLibStrdup smlLibStrlen smlLibStrncat smlLibStrncmp smlLibStrncpy smlLibStrstr smlLibVprintf smlLockReadBuffer smlLockWriteBuffer smlMapCmd smlPcdata2String smlPcdataDup smlProcessData smlPutCmd smlReplaceCmd smlResultsCmd smlSearchCmd smlSetCallbacks smlSetEncoding smlSetSyncMLOptions smlSetUserData smlStartAtomic smlStartMessage smlStartMessageExt smlStartSequence smlStartSync smlStatusCmd smlString2Pcdata smlTerminate smlTerminateInstance smlUnlockReadBuffer smlUnlockWriteBuffer smlStartEvaluation smlEndEvaluation } Index: Makefile =================================================================== RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/bld/palm/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 12 Jun 2004 04:14:26 -0000 1.1 --- Makefile 13 Jun 2004 00:49:56 -0000 1.2 *************** *** 108,112 **** $(SML_NAME) : $(SML_OBJS) @mkdir -p $(BIN) ! m68k-palmos-ld $(SML_OBJS) -o $(SML_NAME) @echo SML build done. --- 108,117 ---- $(SML_NAME) : $(SML_OBJS) @mkdir -p $(BIN) ! m68k-palmos-multigen libsml.def ! m68k-palmos-as -o libsml-sections.o libsml-sections.s ! m68k-palmos-stubgen libsml.def ! m68k-palmos-as -o libsml-dispatch.o libsml-dispatch.s ! m68k-palmos-gcc -Wall -T text_64k -nostartfiles $(SML_OBJS) libsml-dispatch.o libsml-sections.o libsml-sections.ld -o $(SML_NAME) ! build-prc libsml.def libsml.prc @echo SML build done. |