Re: automake help request ...



Jon Trowbridge <trow gnu org> writes:

> dist-hook:
> 	rm -f $(BUILT_SOURCES)
> 
> should do it.

Hi,

that's not quite correct since it'll remove these files from your build
directory, but leaves them in the distdir.

The following works, just tested it:

====
dist-hook:
	for file in $(CORBA_SOURCE) ; do \
	    rm -f $(distdir)/$$file ; \
	done
====

-- 
Martin Baulig
martin gnome org (private)
baulig suse de (work)




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