Re: conditional subdirectories

2005-09-12 Thread Bruce Korb
Antonio Coralles wrote: I'm currently working on a small library. I only want the contents of the 'examples' directory to be built if configure . My toplevel Makefile.am contains: if EXAMPLES MAYBE_EXAMPLES = examples endif SUBDIRS = $(GENERIC_LIBRARY_NAME) $(MAYBE_EXAMPLES) SUBDIRS =

Re: conditional subdirectories

2005-09-12 Thread Matthias Langer
Antonio Coralles wrote: I'm currently working on a small library. I only want the contents of the 'examples' directory to be build if configure has been run with --enable-examples. Thus, according to the automake introduction (http://sources.redhat.com/automake/automake.html#Directories) my