1 ## Process this file with automake to create Makefile.in
3 moduledir = @FVWM_MODULEDIR@
5 module_PROGRAMS = FvwmBanner
7 man_MANS = FvwmBanner.1
8 EXTRA_DIST = $(man_MANS) fvwm-logo-current.xpm fvwm-logo-current.xbm
10 FvwmBanner_SOURCES = FvwmBanner.c
11 FvwmBanner_DEPENDENCIES = $(top_builddir)/libs/libfvwm.a fvwm-logo-current.xpm
13 ## Xpm note: while this module may not depend on Xpm explicitly,
14 ## there are sometimes dependencies through functions in libfvwm
15 ## so we might as well link against libXpm, if present.
16 LDADD = -L$(top_builddir)/libs $(X_LIBS) -lfvwm -lm $(xpm_LIBS) \
17 $(X_PRE_LIBS) $(Xinerama_LIBS) -lXext -lX11 $(X_EXTRA_LIBS) \
18 $(png_LIBS) $(rsvg_LIBS) $(Xrender_LIBS) $(Xcursor_LIBS)
20 INCLUDES = -I$(top_srcdir) $(xpm_CFLAGS) $(X_CFLAGS) $(png_CFLAGS) \