From 1e21f69321ba016120c3640fcad0256234b7a377 Mon Sep 17 00:00:00 2001 From: Janis Ruksans Date: Sat, 30 Jun 2012 14:04:23 +0200 Subject: [PATCH] List files for dist that are not picked up automatically from build rules; and filter out unnecessary ones for distuninstallcheck. Signed-off-by: Andreas Eversberg --- Makefile.am | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 32c4d02..26e575c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -118,6 +118,10 @@ chan_lcr_so_SOURCES = chan_lcr_so_LDFLAGS = -shared chan_lcr_so_LDADD = chan_lcr.po bchannel.po options.po callerid.po select.po +# List chan_lcr specific sources for make dist +EXTRA_chan_lcr_so_SOURCES = chan_lcr.c chan_lcr.h bchannel.c bchannel.h + + chan_lcr.po: chan_lcr.c chan_lcr.h $(CC) $(INCLUDES) $(AST_CFLAGS) $(CPPFLAGS) $(CFLAGS) -D_GNU_SOURCE -fPIC -c $< -o $@ @@ -133,9 +137,12 @@ options.po: options.c options.h select.po: select.c select.h $(CC) $(INCLUDES) -D_GNU_SOURCE $(CPPFLAGS) $(CFLAGS) -fPIC -c $< -o $@ -install-exec-hook: +install-exec-hook: chan_lcr.so $(INSTALL) -d '$(DESTDIR)$(astmoddir)' $(INSTALL) chan_lcr.so '$(DESTDIR)$(astmoddir)' + +uninstall-hook: + cd '$(DESTDIR)$(astmoddir)' && rm -f chan_lcr.so endif INCLUDES = $(all_includes) $(MISDN_INCLUDE) $(GSM_INCLUDE) $(SS5_INCLUDE) $(SIP_INCLUDE) -Wall $(INSTALLATION_DEFINES) @@ -154,11 +161,26 @@ lcr_LDADD = $(LIBCRYPTO) $(MISDN_LIB) -lpthread $(GSM_LIB) $(SIP_LIB) lcradmin_SOURCES = lcradmin.c cause.c options.c genextension_SOURCES = genext.c options.c extension.c + +# List all headers for make dist +noinst_HEADERS = \ + main.h macro.h select.h trace.h options.h tones.h alawulaw.h cause.h interface.h \ + message.h callerid.h socket_server.h port.h vbox.h endpoint.h endpointapp.h \ + appbridge.h apppbx.h route.h extension.h join.h joinpbx.h lcrsocket.h + +noinst_HEADERS += myisdn.h mISDN.h dss1.h loop.h crypt.h remote.h joinremote.h +noinst_HEADERS += ss5.h ss5_encode.h ss5_decode.h +noinst_HEADERS += mncc.h gsm.h gsm_audio.h gsm_bs.h gsm_ms.h +noinst_HEADERS += ie.cpp sip.h + + # Special install function to preserve existing configs. # Optimization with equivalen results are welcome CONFIGFILES = options.conf interface.conf routing.conf directory.list TONEDIRS = tones_american tones_efi tones_german vbox_english vbox_german +EXTRA_DIST = default debian $(TONEDIRS) + install-data-hook: @fns='strcpy strncpy strcat strncat sprintf snprintf' ; \ files=$$( find $(srcdir) -type f -name "*.c*" \ @@ -188,6 +210,18 @@ install-data-hook: else mkdir -p "$$destdir" ; cp -a $(srcdir)/$$d/* "$$destdir/" ; fi ; \ done + +# Because distuninstallcheck expects relative filenames, we cannot +# replace './' with $(prefix) in _listfiles. Therefore we do it the +# other way around to filter out configuration files and tones. +distcheck_CONFIGdir = echo $(CONFIGdir) | sed 's|^$(prefix)/|./|' +distcheck_SHAREdir = echo $(SHAREdir) | sed 's|^$(prefix)/|./|' + +distuninstallcheck_listfiles = find . -type f -print \ + | $(GREP) -v "$$( $(distcheck_CONFIGdir) )" \ + | $(GREP) -v "$$( $(distcheck_SHAREdir) )" + + clean-generic: rm -f *.po -- 2.13.6