Michael Dengler
2007-07-10 17:36:12 UTC
Hi All,
I'm attempting to create a build system that will build rpms.
I have much of the system created but have encountered an show stopper:
I have a top level Makefile like so:
---------------
RPM_DIRS = postgresql
default:
$(foreach DIR,$(RPM_DIRS),$(MAKE) -C $DIRS rpm)
---------------
And a Makefile in each of the RPM_DIRS like so:
---------------
rpm:
rpmbuild -ba postgresql-8.2.4.spec
----------------
If I r
I'm attempting to create a build system that will build rpms.
I have much of the system created but have encountered an show stopper:
I have a top level Makefile like so:
---------------
RPM_DIRS = postgresql
default:
$(foreach DIR,$(RPM_DIRS),$(MAKE) -C $DIRS rpm)
---------------
And a Makefile in each of the RPM_DIRS like so:
---------------
rpm:
rpmbuild -ba postgresql-8.2.4.spec
----------------
If I r