Changeset 5331 for trunk/include
- Timestamp:
- Mar 19, 2001, 7:56:57 PM (24 years ago)
- Location:
- trunk/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/initdll.h
r5305 r5331 13 13 #if (__IBMCPP__ == 300) || (__IBMC__ == 300) 14 14 void _Optlink __ctordtorInit( void ); 15 #define ctordtorInit() 15 #define ctordtorInit() __ctordtorInit() 16 16 17 17 void _Optlink __ctordtorTerm( void ); 18 #define ctordtorTerm() 18 #define ctordtorTerm() __ctordtorTerm() 19 19 20 20 #elif (__IBMCPP__ == 360) || (__IBMC__ == 360) 21 21 void _Optlink __ctordtorInit( int flag ); 22 #define ctordtorInit() 22 #define ctordtorInit() __ctordtorInit(0) 23 23 24 24 void _Optlink __ctordtorTerm( int flag ); 25 #define ctordtorTerm() 25 #define ctordtorTerm() __ctordtorTerm(0) 26 26 27 27 #else … … 56 56 #define ctordtorTerm() 57 57 58 #ifdef __cplusplus 59 extern "C" { 60 //prevent Watcom from mucking with this name 61 extern DWORD _Resource_PEResTab; 62 #pragma aux _Resource_PEResTab "*"; 63 } 64 #endif 65 58 66 #endif 59 67 -
trunk/include/odin32.dbg.wat.mk
r4826 r5331 1 # $Id: odin32.dbg.wat.mk,v 1. 3 2000-12-17 19:54:55 birdExp $1 # $Id: odin32.dbg.wat.mk,v 1.4 2001-03-19 18:56:56 mike Exp $ 2 2 3 3 # … … 19 19 SOMLIB = somtk.lib 20 20 RTLLIB = clib3r.lib 21 RTLLIB_O = clib3r.lib 21 RTLLIB_O = clib3r.lib plbrdll.lib mt7rdll.lib 22 22 DLLENTRY = $(ODIN32_LIB)\dllentry.obj 23 23 ODINCRT = odincrtd … … 112 112 # Linker flags. 113 113 # 114 LDFLAGS = option maxe=125, quiet, symfile, nodefaultlibs LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386115 LDFLAGS_ODINCRT = option maxe=125, quiet, symfile LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386114 LDFLAGS = option maxe=125, caseexact, quiet, symfile, nodefaultlibs LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386 115 LDFLAGS_ODINCRT = option maxe=125, caseexact, quiet, symfile LIBPath $(%WATCOM)\lib386\os2;$(%WATCOM)\lib386 116 116 117 117 !ifndef NODEBUGINFO -
trunk/include/odin32.post.wat.mk
r5288 r5331 1 # $Id: odin32.post.wat.mk,v 1.1 1 2001-03-06 21:44:39mike Exp $1 # $Id: odin32.post.wat.mk,v 1.12 2001-03-19 18:56:56 mike Exp $ 2 2 3 3 # … … 112 112 lib: $(OBJDIR) \ 113 113 $(OBJDIR)\$(ORGTARGET).lib \ 114 $(ODIN32_LIB)\$(ORGTARGET).lib 114 $(ODIN32_LIB)\$(ORGTARGET).lib \ 115 .SYMBOLIC 115 116 !endif 116 117 -
trunk/include/odin32.tools.wat.mk
r5288 r5331 1 # $Id: odin32.tools.wat.mk,v 1. 3 2001-03-06 21:44:39mike Exp $1 # $Id: odin32.tools.wat.mk,v 1.4 2001-03-19 18:56:56 mike Exp $ 2 2 3 3 # … … 54 54 .res : $(OBJDIR) 55 55 56 .c.obj: #.AUTODEPEND56 .c.obj: .AUTODEPEND 57 57 $(CC) $(CFLAGS) $(CINCLUDES) $(CDEFINES) -fo$(OBJDIR)\$^&.obj $^&.c 58 58 59 .cpp.obj: #.AUTODEPEND59 .cpp.obj: .AUTODEPEND 60 60 $(CXX) $(CXXFLAGS) $(CINCLUDES) $(CDEFINES) -fo$(OBJDIR)\$^&.obj $^&.cpp 61 61
Note:
See TracChangeset
for help on using the changeset viewer.