Changeset 5524 for trunk/tools
- Timestamp:
- Apr 16, 2001, 7:22:25 PM (24 years ago)
- Location:
- trunk/tools/wrc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/wrc/makefile.os2
r5522 r5524 1 # $Id: makefile.os2,v 1.1 3 2001-04-16 17:10:52sandervl Exp $1 # $Id: makefile.os2,v 1.14 2001-04-16 17:22:25 sandervl Exp $ 2 2 3 3 … … 8 8 9 9 #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 -DDEBUG10 DEFS = -D__WINE__ -D__EMX__ -DMASM -D__SEMICOLON__ -I. -I../../include/win -I../../include 11 11 12 12 PROGRAMS = wrc.exe … … 113 113 114 114 wrc.exe: lexyy.c y.tab.c $(OBJS) 115 $(CC) $(CFLAGS) -o $@ $(OBJS) -L. -lm115 $(CC) $(CFLAGS) -o $@ $(OBJS) 116 116 copy $@ ..\bin 117 117 -
trunk/tools/wrc/preproc.c
r5523 r5524 322 322 strcat(path, cpy); 323 323 #ifdef __EMX__ 324 fp = fopen( cpy, "rb");324 fp = fopen(path, "rb"); 325 325 #else 326 fp = fopen( cpy, "rt");326 fp = fopen(path, "rt"); 327 327 #endif 328 328 if(fp && (debuglevel & DEBUGLEVEL_PPMSG))
Note:
See TracChangeset
for help on using the changeset viewer.