Changeset 2714 for trunk/tools/wrc/makefile.os2
- Timestamp:
- Feb 10, 2000, 12:52:04 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/wrc/makefile.os2
r2047 r2714 1 #!include ..\..\include\pdwin32.tools 1 # $Id: makefile.os2,v 1.9 2000-02-09 23:49:07 bird Exp $ 2 3 4 PDWIN32_TOOLS = ..\bin 5 PDWIN32_INCLUDE = ..\..\include 6 !include $(PDWIN32_INCLUDE)\pdwin32.tools 7 2 8 3 9 #DEFS = -D__WINE__ -D__WIN32OS2__ -idirafter ../../include/win -idirafter ../../include … … 8 14 9 15 OBJS = \ 10 11 12 13 14 15 16 17 18 19 16 dumpres.o \ 17 genres.o \ 18 newstruc.o \ 19 preproc.o \ 20 readres.o \ 21 utils.o \ 22 wrc.o \ 23 y.tab.o \ 24 lexyy.o \ 25 writeres.o 20 26 21 27 EXTRA_SRCS = parser.y parser.l … … 34 40 35 41 .c.o : 36 42 $(CC) $(CFLAGS_G) $(DEFS) -c $< -o $@ 37 43 38 44 wrc.exe: lexyy.c y.tab.c $(OBJS) 39 40 45 $(CC) $(CFLAGS) -o $@ $(OBJS) 46 copy $@ ..\bin 41 47 42 48 y.tab.c y.tab.h: parser.y 43 49 $(YACC) -d -t parser.y -o y.tab.c 44 50 45 51 lexyy.c: parser.l 46 $(LEX) -8 parser.l 52 $(LEX) -8 parser.l 53 54 55 dep: 56 $(DEPEND) -I../../include/win -I../../include -I$(C_INCLUDE_PATH) \ 57 *.h *.asm *.inc $(PDWIN32_INCLUDE)\*.h *.c *.cpp -objo *.c *.cpp 58 59 !ifndef NODEP 60 !include .depend 61 !endif 62 47 63 48 64 clean: 49 50 # 65 rm -f *.o *.exe 66 # $(RM) y.tab.c y.tab.h lexyy.c *.o *.exe 51 67
Note:
See TracChangeset
for help on using the changeset viewer.