mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-05 06:58:49 +00:00
adding back RELEASE clean up disting of built files
Original commit message from CVS: adding back RELEASE clean up disting of built files
This commit is contained in:
parent
c5d76e5c98
commit
849f5cc3e4
4 changed files with 45 additions and 21 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2004-02-27 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* Makefile.am:
|
||||||
|
* gstreamer.spec.in:
|
||||||
|
put back RELEASE
|
||||||
|
* gst/Makefile.am:
|
||||||
|
clean up non-disting of built files
|
||||||
|
* testsuite/debug/commandline.c:
|
||||||
|
test fix for option rename
|
||||||
|
|
||||||
2004-02-26 David Schleef <ds@schleef.org>
|
2004-02-26 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* configure.ac: We don't really need glib-2.3. Also remove
|
* configure.ac: We don't really need glib-2.3. Also remove
|
||||||
|
|
|
@ -45,7 +45,7 @@ DIST_SUBDIRS = include libs gst \
|
||||||
|
|
||||||
EXTRA_DIST = gstreamer.spec.in gst-element-check.m4 \
|
EXTRA_DIST = gstreamer.spec.in gst-element-check.m4 \
|
||||||
configure.ac autogen.sh depcomp \
|
configure.ac autogen.sh depcomp \
|
||||||
REQUIREMENTS ABOUT-NLS DOCBUILDING DEVEL \
|
REQUIREMENTS ABOUT-NLS DOCBUILDING DEVEL RELEASE \
|
||||||
idiottest.mak common
|
idiottest.mak common
|
||||||
|
|
||||||
CLEANFILES = gst-element-check-@GST_MAJORMINOR@.m4
|
CLEANFILES = gst-element-check-@GST_MAJORMINOR@.m4
|
||||||
|
|
|
@ -67,14 +67,21 @@ else
|
||||||
GST_URI_SRC = gsturi.c
|
GST_URI_SRC = gsturi.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = gstcpuid_i386.s gstmarshal.list gstxml.c gstparse.c gsttrace.c
|
|
||||||
|
|
||||||
SUBDIRS = $(GST_PARSE_DIRS) $(GST_REGISTRY_DIRS) . autoplug elements schedulers $(GST_INDEX_DIRS)
|
SUBDIRS = $(GST_PARSE_DIRS) $(GST_REGISTRY_DIRS) . autoplug elements schedulers $(GST_INDEX_DIRS)
|
||||||
DIST_SUBDIRS = autoplug elements parse registries schedulers indexers
|
DIST_SUBDIRS = autoplug elements parse registries schedulers indexers
|
||||||
|
|
||||||
|
# make variables for all generated source and header files to make the
|
||||||
|
# distinction clear
|
||||||
|
|
||||||
|
built_header_configure = gstconfig.h gstversion.h
|
||||||
|
built_header_make = gstenumtypes.h gstmarshal.h
|
||||||
|
built_source_make = $(GST_ENUMTYPES_SRC) gstmarshal.c
|
||||||
|
|
||||||
|
EXTRA_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
|
gstcpuid_i386.s gstmarshal.list gstxml.c gstparse.c gsttrace.c
|
||||||
|
|
||||||
libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
gst.c \
|
gst.c \
|
||||||
$(GST_ENUMTYPES_SRC) \
|
|
||||||
gstobject.c \
|
gstobject.c \
|
||||||
gstatomic.c \
|
gstatomic.c \
|
||||||
gstbin.c \
|
gstbin.c \
|
||||||
|
@ -120,19 +127,28 @@ libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
||||||
$(GSTARCH_SRCS) \
|
$(GSTARCH_SRCS) \
|
||||||
$(GST_LOADSAVE_SRC)
|
$(GST_LOADSAVE_SRC)
|
||||||
|
|
||||||
nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = \
|
# do not put files in the distribution that are generated
|
||||||
gstmarshal.c
|
nodist_libgstreamer_@GST_MAJORMINOR@_la_SOURCES = $(built_source_make)
|
||||||
|
|
||||||
BUILT_SOURCES = gstversion.h gstconfig.h gstmarshal.h gstmarshal.c gstenumtypes.h $(GST_ENUMTYPES_SRC)
|
# BUILT_SOURCES are built on make all/check/install before all other targets
|
||||||
CLEANFILES = gstmarshal.h gstmarshal.c gstenumtypes.h $(GST_ENUMTYPES_SRC)
|
BUILT_SOURCES = \
|
||||||
DISTCLEANFILES = gstversion.h gstconfig.h
|
$(built_header_configure) \
|
||||||
|
$(built_header_make) \
|
||||||
|
$(built_source_make)
|
||||||
|
# CLEANFILES is for files generated by make
|
||||||
|
CLEANFILES = $(built_header_make) $(built_source_make)
|
||||||
|
# DISTCLEANFILES is for files generated by configure
|
||||||
|
DISTCLEANFILES = $(built_header_configure)
|
||||||
|
|
||||||
libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = -D_GNU_SOURCE \
|
libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = \
|
||||||
|
-D_GNU_SOURCE \
|
||||||
$(GST_CFLAGS) \
|
$(GST_CFLAGS) \
|
||||||
-DG_LOG_DOMAIN=g_log_domain_gstreamer \
|
-DG_LOG_DOMAIN=g_log_domain_gstreamer \
|
||||||
-DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\"
|
-DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\"
|
||||||
libgstreamer_@GST_MAJORMINOR@_la_LIBADD = $(LIBGST_LIBS) $(GST_PARSE_LIBADD) $(GST_REGISTRY_LIBADD)
|
libgstreamer_@GST_MAJORMINOR@_la_LIBADD = \
|
||||||
libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|
$(LIBGST_LIBS) $(GST_PARSE_LIBADD) $(GST_REGISTRY_LIBADD)
|
||||||
|
libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = \
|
||||||
|
@GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|
||||||
|
|
||||||
|
|
||||||
libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
|
libgstreamer_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst
|
||||||
|
@ -187,10 +203,7 @@ gst_headers = \
|
||||||
|
|
||||||
libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
|
libgstreamer_@GST_MAJORMINOR@include_HEADERS = $(gst_headers)
|
||||||
nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
|
nodist_libgstreamer_@GST_MAJORMINOR@include_HEADERS = \
|
||||||
gstconfig.h \
|
$(built_header_configure) $(built_header_make)
|
||||||
gstversion.h \
|
|
||||||
gstmarshal.h \
|
|
||||||
gstenumtypes.h
|
|
||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
gettext.h \
|
gettext.h \
|
||||||
|
|
|
@ -127,7 +127,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files -f gstreamer-%{majorminor}.lang
|
%files -f gstreamer-%{majorminor}.lang
|
||||||
%defattr(-, root, root, -)
|
%defattr(-, root, root, -)
|
||||||
%doc AUTHORS COPYING README TODO COPYING.LIB ABOUT-NLS REQUIREMENTS DOCBUILDING
|
%doc AUTHORS COPYING NEWS README TODO RELEASE
|
||||||
|
·doc COPYING.LIB ABOUT-NLS REQUIREMENTS DOCBUILDING
|
||||||
%{_libdir}/libgstreamer-%{majorminor}.so.*
|
%{_libdir}/libgstreamer-%{majorminor}.so.*
|
||||||
%{_libdir}/libgstcontrol-%{majorminor}.so.*
|
%{_libdir}/libgstcontrol-%{majorminor}.so.*
|
||||||
%dir %{_libdir}/gstreamer-%{majorminor}
|
%dir %{_libdir}/gstreamer-%{majorminor}
|
||||||
|
|
Loading…
Reference in a new issue