Ignore:
Timestamp:
Sep 20, 2002, 5:38:43 AM (23 years ago)
Author:
bird
Message:

Rulename changes executable -> binary. miscellaneous -> misc. IPF support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/make/process.forwarder.mak

    r9227 r9274  
    1 # $Id: process.forwarder.mak,v 1.15 2002-09-12 03:22:12 bird Exp $
     1# $Id: process.forwarder.mak,v 1.16 2002-09-20 03:38:43 bird Exp $
    22
    33#
     
    6565
    6666.SUFFIXES:
    67 .SUFFIXES: .c .cpp .asm .$(EXT_OBJ) .rc .$(EXT_RES) .ii .s
     67.SUFFIXES: .c .cpp .asm .$(EXT_OBJ) .rc .$(EXT_RES) .ii .s .ipp .ipf .$(EXT_INF) .$(EXT_HLP)
    6868
    6969
     
    153153
    154154# Compiling resources.
    155 .rc{$(PATH_TARGET)}.res:
     155.rc{$(PATH_TARGET)}.$(EXT_RES):
    156156    \
    157157!ifndef BUILD_VERBOSE
     
    168168
    169169
     170# Compiling INFs.
     171.ipf{$(PATH_TARGET)}.$(EXT_INF):
     172    \
     173!ifndef BUILD_VERBOSE
     174    @ \
     175!endif
     176    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     177
     178.ipf.inf:
     179    \
     180!ifndef BUILD_VERBOSE
     181    @ \
     182!endif
     183    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     184
     185
     186# Compiling INFs with pre-compiling
     187.ipp{$(PATH_TARGET)}.$(EXT_INF):
     188    \
     189!ifndef BUILD_VERBOSE
     190    @ \
     191!endif
     192    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     193
     194.ipp.inf:
     195    \
     196!ifndef BUILD_VERBOSE
     197    @ \
     198!endif
     199    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     200
     201
     202# Compiling HLPs
     203.ipf{$(PATH_TARGET)}.$(EXT_HLP):
     204    \
     205!ifndef BUILD_VERBOSE
     206    @ \
     207!endif
     208    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     209
     210.ipf.hlp:
     211    \
     212!ifndef BUILD_VERBOSE
     213    @ \
     214!endif
     215    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     216
     217
     218# Compiling HLPs with pre-compiling
     219.ipp{$(PATH_TARGET)}.$(EXT_HLP):
     220    \
     221!ifndef BUILD_VERBOSE
     222    @ \
     223!endif
     224    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     225
     226.ipp.hlp:
     227    \
     228!ifndef BUILD_VERBOSE
     229    @ \
     230!endif
     231    $(TOOL_BUILDENV) $(BUILD_ENVS_CHANGE) * $(TOOL_MAKE) -f $(MAKEFILE) $@
     232
    170233
    171234
     
    181244# Generic forwarder
    182245# -----------------------------------------------------------------------------
    183 build rebuild clean dep needed lib executable miscellaneous \
     246build rebuild clean dep needed lib binary misc \
    184247!if "$(TARGET_MODE)" == "DEPEND"
    185248$(TARGET) \
     
    188251$(RULES_FORWARD) \
    189252publish publish_target testcase nothing target packing \
    190 pass1 pass2 pass3 pass4 pass5 pass6 quick:
     253pass1 pass2 pass3 pass4 pass5 pass6 quick \
     254# obsoletes:
     255miscellaneous executable :
    191256    \
    192257!ifndef BUILD_VERBOSE
Note: See TracChangeset for help on using the changeset viewer.