forked from e16/e16
1
0
Fork 0

Add uninstall-local to fix distcheck (with recent autotools?).

Add -module to lib LDFLAGS as that seems to be appropriate.

SVN revision: 70388
This commit is contained in:
Kim Woelders 2012-04-22 17:39:29 +00:00
parent 10f6a232d0
commit 3a1d769ba4
2 changed files with 8 additions and 2 deletions

View File

@ -10,7 +10,7 @@ libhack_la_SOURCES = e16_hack.c
libhack_la_CPPFLAGS = -I$(top_srcdir)/src $(X_CFLAGS) $(CWARNFLAGS)
libhack_la_LIBADD = $(DLOPEN_LIBS)
libhack_la_LDFLAGS = -avoid-version
libhack_la_LDFLAGS = -module -avoid-version
endif
@ -22,9 +22,12 @@ libtrip_la_SOURCES = e16_trip.c
libtrip_la_CPPFLAGS = -I$(top_srcdir)/src $(X_CFLAGS) $(CWARNFLAGS)
libtrip_la_LIBADD = $(DLOPEN_LIBS)
libtrip_la_LDFLAGS = -avoid-version
libtrip_la_LDFLAGS = -module -avoid-version
endif
install-data-hook:
rm -f $(DESTDIR)$(libe16dir)/*.la
uninstall-local:
rm -f $(DESTDIR)$(libe16dir)/*.so

View File

@ -212,3 +212,6 @@ endif
install-data-hook:
rm -f $(DESTDIR)$(libe16dir)/*.la
uninstall-local:
rm -f $(DESTDIR)$(libe16dir)/*.so