Re: Solved: Need Code to Run Before Targets Are Processed?

2008-08-04 Thread Ineiev
Sorry for delay. On 8/4/08, Bobby Dill <[EMAIL PROTECTED]> wrote: > Just wanted to let everyone know I figured out what Ineiev solution was. Just wanted to explain in more detail for those who did not. Makefile.am.m4 is a template written in m4 without Autoconf redefinitions and macros. You put

Fwd: Solved: Need Code to Run Before Targets Are Processed?

2008-08-04 Thread Ineiev
Awfully sorry, sent it from a wrong address. -- Forwarded message -- From: Ineiev <[EMAIL PROTECTED]> Date: Aug 4, 2008 11:00 AM Subject: Re: Solved: Need Code to Run Before Targets Are Processed? To: Bobby Dill <[EMAIL PROTECTED]> Cc: Automake Sorry for delay. On 8

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