Changeset 6547 for branches/mini/src


Ignore:
Timestamp:
Aug 16, 2001, 5:57:02 PM (24 years ago)
Author:
bird
Message:

No gain.

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:24 bird Exp $
     1/* $Id: minihll.c,v 1.1.2.4 2001-08-16 15:57:01 bird Exp $
    22 *
    33 * Minimal 'High Level Language' executable.
     
    2525                                    char *  pszMsg);
    2626#else
     27#ifdef __IBMC__
     28extern int _Optlink _printf_ansi(register char * pszMsg);
     29#else
     30//Watcom
    2731extern int _printf_ansi(register char * pszMsg);
     32#endif
    2833#endif
    2934
     
    5762    DosPutMessage(0, 18, szMsg);
    5863    #else
     64    #ifdef __IBMC__
     65    _printf_ansi(psz = szMsg);
     66    #else
    5967    _printf_ansi(szMsg);
     68    #endif
    6069    #endif
    6170}
  • branches/mini/src/win32k/test/minihll.def

    r6533 r6547  
    1 ; $Id: minihll.def,v 1.1.2.2 2001-08-15 01:50:13 bird Exp $
     1; $Id: minihll.def,v 1.1.2.3 2001-08-16 15:57:02 bird Exp $
    22NAME ''
    33
     
    1111
    1212IMPORTS
    13     printf = LIBCN.1082
     13    _printf_ansi = LIBCN.83
     14    _printf_ansi_ = LIBCN.83
    1415
  • branches/mini/src/win32k/test/minihll.mak

    r6534 r6547  
    1 # $Id: minihll.mak,v 1.1.2.3 2001-08-15 03:12:25 bird Exp $
     1# $Id: minihll.mak,v 1.1.2.4 2001-08-16 15:57:02 bird Exp $
    22
    33#
     
    3636CFLAGS += -dLIBC=1
    3737!endif
     38!else
     39# VACxx
     40!ifdef LIBC
     41CFLAGS  = $(CFLAGS) /NTCODEANDDATA -Fa$(OBJDIR)\$(@B).lst -DLIBC=1
     42!else
     43CFLAGS  = $(CFLAGS) /NTCODEANDDATA -Fa$(OBJDIR)\$(@B).lst
     44!endif
    3845!endif
    3946
     
    6875# Main rule
    6976#
    70 $(OBJDIR)\$(TARGET).exe: $(OBJS)  $(DEFFILE) $(OBJDIR)\$(TARGET).lrf
     77$(OBJDIR)\$(TARGET).exe: $(OBJS)  $(DEFFILE)
    7178!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
    7483!else
    7584    wlink system os2v2 file {$(OBJS)} name $(OBJDIR)\.exe \
     
    95104# Exe: Linker file - creates the parameter file passed on to the linker.
    96105#
    97 !ifndef WAT
     106!if 1 #ndef WAT
    98107$(OBJDIR)\$(TARGET).lrf: makefile
     108    @$(RM) $@
    99109    @echo Creating file <<$@
    100110/OUT:$(OBJDIR)\$(TARGET).exe
     
    109119!else
    110120$(OBJDIR)\$(TARGET).lrf: makefile
    111     echo $@
     121    echo $@ <<$@
     122<<
    112123!endif
    113124
Note: See TracChangeset for help on using the changeset viewer.