Changeset 4620 for trunk/tools/omfdumper
- Timestamp:
- Nov 19, 2000, 9:35:50 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/omfdumper/makefile
r2714 r4620 1 # $Id: makefile,v 1. 2 2000-02-09 23:49:55bird Exp $1 # $Id: makefile,v 1.3 2000-11-19 08:26:16 bird Exp $ 2 2 3 3 # … … 7 7 # 8 8 9 !include ..\..\include\pdwin32.tools 9 # 10 # Directory macros. 11 # 12 PDWIN32_INCLUDE = ..\..\include 13 PDWIN32_LIB = ..\..\lib 14 PDWIN32_BIN = ..\bin 15 PDWIN32_TOOLS = ..\bin 16 PDWIN32_TCOMMON = ..\common 10 17 11 all: omfdumper.exe ..\bin\omfdumper.exe12 18 13 omfdumper.exe: omfdumper.c omf.h 14 icc /ti+ /Q+ omfdumper.c 19 # 20 # Tell buildenvironment that we're makeing an .exe. 21 # Tell buildenvironment that we should not copy this into /bin. 22 # 23 EXETARGET = 1 24 NO_MAIN_BIN_COPY = 1 15 25 16 ..\bin\omfdumper.exe: omfdumper.exe17 $(CP) $** $@18 26 19 dep: # dummy rule 27 # 28 # Compiler, tools, and interference rules. 29 # 30 !include $(PDWIN32_INCLUDE)\pdwin32.mk 31 !include $(PDWIN32_TCOMMON)\common.mk 20 32 21 clean:22 -@$(RM) *.obj23 -@$(RM) *.exe24 33 34 # 35 # Object files. Prefix with OBJDIR and one space before the '\'. 36 # 37 OBJS= \ 38 $(OBJDIR)\omfdumper.obj 39 40 41 # 42 # Libraries. One space before the '\'. 43 # 44 LIBS = \ 45 $(RTLLIB) \ 46 os2386.lib 47 48 49 # 50 # Target name - name of the exe without extention and path. 51 # 52 TARGET = omfdumper 53 54 55 # 56 # Includes the common rules. 57 # 58 !include $(PDWIN32_INCLUDE)\pdwin32.post 59 !include $(PDWIN32_TCOMMON)\common.mk.post 60
Note:
See TracChangeset
for help on using the changeset viewer.