Changeset 4620 for trunk/tools/omfdumper


Ignore:
Timestamp:
Nov 19, 2000, 9:35:50 AM (25 years ago)
Author:
bird
Message:

New makefile style.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/omfdumper/makefile

    r2714 r4620  
    1 # $Id: makefile,v 1.2 2000-02-09 23:49:55 bird Exp $
     1# $Id: makefile,v 1.3 2000-11-19 08:26:16 bird Exp $
    22
    33#
     
    77#
    88
    9 !include ..\..\include\pdwin32.tools
     9#
     10# Directory macros.
     11#
     12PDWIN32_INCLUDE = ..\..\include
     13PDWIN32_LIB     = ..\..\lib
     14PDWIN32_BIN     = ..\bin
     15PDWIN32_TOOLS   = ..\bin
     16PDWIN32_TCOMMON = ..\common
    1017
    11 all: omfdumper.exe ..\bin\omfdumper.exe
    1218
    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#
     23EXETARGET = 1
     24NO_MAIN_BIN_COPY = 1
    1525
    16 ..\bin\omfdumper.exe: omfdumper.exe
    17    $(CP) $** $@
    1826
    19 dep: # dummy rule
     27#
     28# Compiler, tools, and interference rules.
     29#
     30!include $(PDWIN32_INCLUDE)\pdwin32.mk
     31!include $(PDWIN32_TCOMMON)\common.mk
    2032
    21 clean:
    22    -@$(RM) *.obj
    23    -@$(RM) *.exe
    2433
     34#
     35# Object files. Prefix with OBJDIR and one space before the '\'.
     36#
     37OBJS= \
     38$(OBJDIR)\omfdumper.obj
     39
     40
     41#
     42# Libraries. One space before the '\'.
     43#
     44LIBS = \
     45$(RTLLIB) \
     46os2386.lib
     47
     48
     49#
     50# Target name - name of the exe without extention and path.
     51#
     52TARGET = 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.