Changeset 5524 for trunk/tools


Ignore:
Timestamp:
Apr 16, 2001, 7:22:25 PM (24 years ago)
Author:
sandervl
Message:

updates

Location:
trunk/tools/wrc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/wrc/makefile.os2

    r5522 r5524  
    1 # $Id: makefile.os2,v 1.13 2001-04-16 17:10:52 sandervl Exp $
     1# $Id: makefile.os2,v 1.14 2001-04-16 17:22:25 sandervl Exp $
    22
    33
     
    88
    99#DEFS      = -D__WINE__ -D__WIN32OS2__ -idirafter ../../include/win -idirafter ../../include
    10 DEFS      = -D__WINE__ -D__EMX__ -DMASM -D__SEMICOLON__  -I. -I../../include/win -I../../include -g -DDEBUG
     10DEFS      = -D__WINE__ -D__EMX__ -DMASM -D__SEMICOLON__  -I. -I../../include/win -I../../include
    1111
    1212PROGRAMS = wrc.exe
     
    113113
    114114wrc.exe: lexyy.c y.tab.c $(OBJS)
    115     $(CC) $(CFLAGS) -o $@ $(OBJS)  -L. -lm
     115    $(CC) $(CFLAGS) -o $@ $(OBJS)
    116116    copy $@ ..\bin
    117117
  • trunk/tools/wrc/preproc.c

    r5523 r5524  
    322322                strcat(path, cpy);
    323323#ifdef __EMX__
    324                 fp = fopen(cpy, "rb");
     324                fp = fopen(path, "rb");
    325325#else
    326                 fp = fopen(cpy, "rt");
     326                fp = fopen(path, "rt");
    327327#endif
    328328                if(fp && (debuglevel & DEBUGLEVEL_PPMSG))
Note: See TracChangeset for help on using the changeset viewer.