help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Intermediate targets


From: Oppermann, Henry
Subject: Intermediate targets
Date: Thu, 29 Jul 2004 14:43:42 -0500

I have a situation as shown below, where an intermediate target is used to
invoke another makefile:


Maint : DEPSFILE = Maint.deps
Maint : LISTFILE = Maint.list
Maint                   :       S390.Build

############################################################################
####

Precomp: DEPSFILE = Precomp.deps
Precomp: LISTFILE = Precomp.list
Precomp: DBMS_IN_BASE=db2     
Precomp                 :       S390.Build
     <snip>
.PHONY : S390.Build

S390.Build              : 
        @echo .
        @echo **** Start of build for $(LVL) OS/390 ($(DEPSFILE))
        @echo .
        < this is where the recursive make is invoked >

MY quandry is this; Once the S390.Build target has be "remade" the first
time, Make does not remake it again. Is there some way to tell Make to
always rebuild this target?

Thanks,

Henry Oppermann
Senior Product Developer





reply via email to

[Prev in Thread] Current Thread [Next in Thread]