1## Process this file with automake to create Makefile.in
2
3program_transform_name =
4
5moduledir = @FVWM_MODULEDIR@
6module_PROGRAMS = FvwmAnimate
7
8FvwmAnimate_SOURCES = FvwmAnimate.c FvwmAnimate.h
9FvwmAnimate_DEPENDENCIES = $(top_builddir)/libs/libfvwm3.a
10
11## Xpm note: while this module may not depend on Xpm explicitly,
12## there are sometimes dependencies through functions in libfvwm
13## so we might as well link against libXpm, if present.
14LDADD = -L$(top_builddir)/libs $(X_LIBS) -lfvwm3 $(xpm_LIBS) \
15	$(X_PRE_LIBS) -lXext -lX11 $(X_EXTRA_LIBS) -lm $(png_LIBS) \
16	$(rsvg_LIBS) $(Xrender_LIBS) $(Xcursor_LIBS) $(freetype_LIBS)
17
18AM_CPPFLAGS = -I$(top_srcdir) $(xpm_CFLAGS) $(X_CFLAGS) \
19	$(png_CFLAGS) $(Xrender_CFLAGS) $(freetype_CFLAGS)
20