Hello Bobby,
a few comments:
On Sat, May 03, 2008 at 11:38:08PM -0700, Bobby Dill wrote:
> When I try to compile my app, I get a message stating that sigcreatedlg.h
> does not exist, so the files in BUILT_SOURCES are not generated before the
> rest of my app is compiled. What's the right way to
"Bobby Dill" <[EMAIL PROTECTED]> writes:
> pkgmaker_UI =
> sigcreatedlg.h
> sigcreatedlg.cpp
One obvious error is here: the first two lines should end in \.
--
"[Modern] war is waged by each ruling group against its own subjects,
and the object of the war is not to make or prevent conqu
I have written a Makefile.am and processed it with automake 1.10. Here's how
the file looks.
METASOURCES = AUTO
bin_PROGRAMS = pkgmaker
# This rule lets GNU make create any moc_*.cpp from the equivalent *.h
%.h: %.ui
$(UIC) -o $@ $<
%.cpp: %.ui
$(UIC) -o $@ -impl $*.h $<
# You have one .h