1 ## Process this file with automake to create Makefile.in
3 moduleexecdir = @FVWM_MODULEDIR@
4 moduleexec_PROGRAMS = FvwmEvent
6 EXTRA_DIST = $(man_MANS)
8 FvwmEvent_SOURCES = FvwmEvent.c
9 FvwmEvent_DEPENDENCIES = $(top_builddir)/libs/libfvwm.a
11 # This module behaves like the old FvwmAudio when invoked with that name.
12 install-exec-local: ../../config.h Makefile
13 $(mkinstalldirs) $(DESTDIR)$(moduleexecdir)
14 rm -f $(DESTDIR)$(moduleexecdir)/FvwmAudio
15 @_fe=`echo FvwmEvent|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
16 _fa=`echo FvwmAudio|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
17 echo " $(LN_S) $$_fe $(DESTDIR)$(moduleexecdir)/$$_fa"; \
18 $(LN_S) "$$_fe" $(DESTDIR)$(moduleexecdir)/"$$_fa" || true
20 LDADD = -L$(top_builddir)/libs $(X_LIBS) -lfvwm $(rplay_LIBS) \
21 $(X_PRE_LIBS) -lXext -lX11 $(X_EXTRA_LIBS)
23 INCLUDES = -I$(top_srcdir) $(rplay_CFLAGS) $(X_CFLAGS)