Changeset 6547 for branches/mini/src
- Timestamp:
- Aug 16, 2001, 5:57:02 PM (24 years ago)
- Location:
- branches/mini/src/win32k/test
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mini/src/win32k/test/minihll.c
r6534 r6547 1 /* $Id: minihll.c,v 1.1.2. 3 2001-08-15 03:12:24bird Exp $1 /* $Id: minihll.c,v 1.1.2.4 2001-08-16 15:57:01 bird Exp $ 2 2 * 3 3 * Minimal 'High Level Language' executable. … … 25 25 char * pszMsg); 26 26 #else 27 #ifdef __IBMC__ 28 extern int _Optlink _printf_ansi(register char * pszMsg); 29 #else 30 //Watcom 27 31 extern int _printf_ansi(register char * pszMsg); 32 #endif 28 33 #endif 29 34 … … 57 62 DosPutMessage(0, 18, szMsg); 58 63 #else 64 #ifdef __IBMC__ 65 _printf_ansi(psz = szMsg); 66 #else 59 67 _printf_ansi(szMsg); 68 #endif 60 69 #endif 61 70 } -
branches/mini/src/win32k/test/minihll.def
r6533 r6547 1 ; $Id: minihll.def,v 1.1.2. 2 2001-08-15 01:50:13bird Exp $1 ; $Id: minihll.def,v 1.1.2.3 2001-08-16 15:57:02 bird Exp $ 2 2 NAME '' 3 3 … … 11 11 12 12 IMPORTS 13 printf = LIBCN.1082 13 _printf_ansi = LIBCN.83 14 _printf_ansi_ = LIBCN.83 14 15 -
branches/mini/src/win32k/test/minihll.mak
r6534 r6547 1 # $Id: minihll.mak,v 1.1.2. 3 2001-08-15 03:12:25bird Exp $1 # $Id: minihll.mak,v 1.1.2.4 2001-08-16 15:57:02 bird Exp $ 2 2 3 3 # … … 36 36 CFLAGS += -dLIBC=1 37 37 !endif 38 !else 39 # VACxx 40 !ifdef LIBC 41 CFLAGS = $(CFLAGS) /NTCODEANDDATA -Fa$(OBJDIR)\$(@B).lst -DLIBC=1 42 !else 43 CFLAGS = $(CFLAGS) /NTCODEANDDATA -Fa$(OBJDIR)\$(@B).lst 44 !endif 38 45 !endif 39 46 … … 68 75 # Main rule 69 76 # 70 $(OBJDIR)\$(TARGET).exe: $(OBJS) $(DEFFILE) $(OBJDIR)\$(TARGET).lrf77 $(OBJDIR)\$(TARGET).exe: $(OBJS) $(DEFFILE) 71 78 !ifndef WAT 72 -8 $(LD2) /FORCE $(LD2FLAGS) /BASE:0x10000 /PACKCODE /PACKDATA /NOEXEPACK \ 73 /ALIGNMENT:1 @$(OBJDIR)\$(TARGET).lrf 79 ilink /FORCE /BASE:0x10000 /PACKCODE /PACKDATA /NOEXEPACK /ALIGNMENT:1 $(OBJS) \ 80 /OUT:$(OBJDIR)\$(TARGET).exe /MAP:$(OBJDIR)\$(TARGET).map \ 81 $(LIBS) $(DEFFILE) 82 echo ok 74 83 !else 75 84 wlink system os2v2 file {$(OBJS)} name $(OBJDIR)\.exe \ … … 95 104 # Exe: Linker file - creates the parameter file passed on to the linker. 96 105 # 97 !if ndef WAT106 !if 1 #ndef WAT 98 107 $(OBJDIR)\$(TARGET).lrf: makefile 108 @$(RM) $@ 99 109 @echo Creating file <<$@ 100 110 /OUT:$(OBJDIR)\$(TARGET).exe … … 109 119 !else 110 120 $(OBJDIR)\$(TARGET).lrf: makefile 111 echo $@ 121 echo $@ <<$@ 122 << 112 123 !endif 113 124
Note:
See TracChangeset
for help on using the changeset viewer.