diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-01-04 11:13:20 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-01-04 11:13:20 +0000 |
commit | d719d0907644b76aa0e0669cac65dceb8c6361a7 (patch) | |
tree | cd336a6c68eb9f98f644aabd3edd840064db1fc8 | |
parent | 6ab36a119bdff33276f757291bd65e0d9eaa303f (diff) | |
download | gst-plugins-bad-d719d0907644b76aa0e0669cac65dceb8c6361a7.tar.gz gst-plugins-bad-d719d0907644b76aa0e0669cac65dceb8c6361a7.tar.bz2 gst-plugins-bad-d719d0907644b76aa0e0669cac65dceb8c6361a7.zip |
this might be better
Original commit message from CVS:
this might be better
-rw-r--r-- | ext/arts/Makefile.am | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/ext/arts/Makefile.am b/ext/arts/Makefile.am index 25642cd5..a18ea8f0 100644 --- a/ext/arts/Makefile.am +++ b/ext/arts/Makefile.am @@ -1,29 +1,31 @@ ## we wrap this Makefile.am in a USE_ so that we won't run mcopidl ## during make distcheck when it isn't on the system if USE_ARTS -plugindir = $(libdir)/gst - -plugin_LTLIBRARIES = libgstarts.la - -gst_artsio_impl.lo: gst_artsio.cc - SUFFIXES = .idl .idl.cc: mcopidl -t $< $(ARTS_CXXFLAGS) # mcopidl Extension Expansion Technology clean up CLEANFILES = gst_artsio.h gst_artsio.cc gst_artsio.mcopclass gst_artsio.mcoptype +endif + +plugindir = $(libdir)/gst + +plugin_LTLIBRARIES = libgstarts.la + +gst_artsio_impl.lo: gst_artsio.cc libgstarts_la_SOURCES = gst_arts.c gst_artsio.cc gst_artsio_impl.cc noinst_HEADERS = gst_arts.h gst_artsio_impl.h # FIXME automake 1.4 hack, 1.5 should let us put the .idl in # _SOURCES at which point the follow can be removed -EXTRA_DIST = gst_artsio.idl -dist-hook: - rm -f $(distdir)/gst_artsio.cc libgstarts_la_CFLAGS = $(GST_CFLAGS) libgstarts_la_CXXFLAGS = $(ARTS_CXXFLAGS) $(GST_CFLAGS) libgstarts_la_LIBADD = $(ARTS_LIBS) -endif + +EXTRA_DIST = gst_artsio.idl +dist-hook: + rm -f $(distdir)/gst_artsio.cc + |