1## Process this file with automake to create Makefile.in
2
3program_transform_name =
4
5moduledir = @FVWM_MODULEDIR@
6configdir = @FVWM_DATADIR@
7
8module_PROGRAMS = FvwmIconMan
9EXTRA_DIST = ConfigFvwmIconMan
10
11config_DATA = \
12  ConfigFvwmIconMan
13
14FvwmIconMan_SOURCES = FvwmIconMan.c FvwmIconMan.h debug.c debug.h \
15	functions.c fvwm.c globals.c readconfig.c readconfig.h \
16	winlist.c x.c x.h xmanager.c xmanager.h
17
18FvwmIconMan_DEPENDENCIES = $(top_builddir)/libs/libfvwm3.a
19
20## Xpm note: while this module may not depend on Xpm explicitly,
21## there are sometimes dependencies through functions in libfvwm
22## so we might as well link against libXpm, if present.
23LDADD = -L$(top_builddir)/libs -lfvwm3 $(Xft_LIBS) $(X_LIBS) \
24	$(X_PRE_LIBS) $(XRandR_LIBS) -lXext -lX11 $(X_EXTRA_LIBS) \
25	$(iconv_LIBS) $(Xrender_LIBS) $(rsvg_LIBS) -lm $(Bidi_LIBS)
26
27AM_CPPFLAGS = -I$(top_srcdir)  $(Xft_CFLAGS) $(X_CFLAGS) \
28	$(iconv_CFLAGS) $(Xrender_CFLAGS) $(Bidi_CFLAGS)
29
30