Re: Need Code to Run Before Targets Are Processed?

2008-07-31 Thread Ineiev
Hello, Bobby On 8/1/08, Bobby Dill <[EMAIL PROTECTED]> wrote: > # This code must be run before anything is compiled > forms="mainform \ > colorname \ > findform \ > optionsform" > > uicode := $(foreach i, $(forms), $(i).ui.h) > mocced := $(foreach i, $(for

Need Code to Run Before Targets Are Processed?

2008-07-31 Thread Bobby Dill
In my last post, I was asking about a for loop that I have finally figured out how to get around. Now, I'm faced with a new problem. Here is the entire Makefile.am bin_PROGRAMS = colortool # Generate a *.h file from a *.ui file %.h: %.ui uic $< -o $@ # Generate a *.cpp file from a *.ui fi

Need Code to Run Before Targets Are Processed?

2008-07-31 Thread Bobby Dill
In my last post, I was asking about a for loop that I have finally figured out how to get around. Now, I'm faced with a new problem. Here is the entire Makefile.am bin_PROGRAMS = colortool # Generate a *.h file from a *.ui file %.h: %.ui uic $< -o $@ # Generate a *.cpp file from a *.ui fi