/* Imakefile for fvwm-1.20 and later. 1/31/94.            */
/* Procedure is xmkmf; make Makefiles; make all           */
/*              make install; make install.man            */

/* I need to get the #define XPM from configuration.h if its in there, */
/* so that I can tell if I should include -lXpm                        */
#include <configure.h>

#define IHaveSubdirs

/* Can define CDEBUGFLAGS to anything you need */
/*CDEBUGFLAGS = -LMyLibrarydir*/

#ifdef XPM
SUBDIRS = fvwm \
          xpmroot\
          modules/FvwmBanner \
          modules/GoodStuff \
          modules/FvwmIdent \
          modules/FvwmDebug \
          modules/FvwmBacker \
	  modules/FvwmFileMgr \
	  modules/FvwmAudio \
          modules/FvwmClean \
          modules/FvwmPager \
          modules/FvwmIconBox \
          modules/FvwmScroll \
          modules/FvwmSave \
          modules/FvwmWinList
#else
SUBDIRS = fvwm \
          modules/GoodStuff \
          modules/FvwmIdent \
          modules/FvwmDebug \
          modules/FvwmBacker \
          modules/FvwmClean \
          modules/FvwmPager \
	  modules/FvwmAudio \
          modules/FvwmScroll \
          modules/FvwmIconBox \
          modules/FvwmSave \
          modules/FvwmWinList
#endif
/* I have absolutely no idea what this does, but it seems to be needed */
#define PassCDebugFlags 'CDEBUGFLAGS=$(CDEBUGFLAGS)'

MakeSubdirs($(SUBDIRS))

/* Doesn't work for me! */
/* #DependSubdirs($(SUBDIRS))*/




