diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-26 17:38:23 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-26 17:38:23 +0000 |
commit | 4aa838e616d348300798db59adc67dcd0f51e8b1 (patch) | |
tree | db0f8b45f9ef746798f5069f3629fe2f0b45040c /Makefile.am | |
parent | 1f19d3eef81818cedbffe49045a86ce9c048f15a (diff) | |
download | xine-lib-4aa838e616d348300798db59adc67dcd0f51e8b1.tar.gz xine-lib-4aa838e616d348300798db59adc67dcd0f51e8b1.tar.bz2 |
win32/Makefile.am had a very short life ;)
It would have scared the Windows users and would have been hard to maintain,
so we remove it and distribute the win32 subdirectory from the toplevel
Makefile using dist-hook
CVS patchset: 5606
CVS date: 2003/10/26 17:38:23
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 9ab0152ab..11e60e94a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,7 @@ AUTOMAKE_OPTIONS = 1.3 ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = doc m4 intl po misc include src win32 +SUBDIRS = doc m4 intl po misc include src DEBFILES = debian/README.Debian debian/changelog debian/control \ debian/copyright debian/rules debian/compat \ @@ -67,7 +67,7 @@ prune-cache: release-check: misc/relchk.sh @mv -f .cvsversion .cvsversion.tmp - @./autogen.sh && $(SHELL) misc/relchk.sh + @./autogen.sh noconfig && $(SHELL) misc/relchk.sh @mv -f .cvsversion.tmp .cvsversion @@ -84,6 +84,11 @@ install-data-hook: fi +dist-hook: + cp -r $(srcdir)/win32 $(distdir)/win32 + rm -rf `find $(distdir)/win32 -name CVS` + + mostlyclean-generic: -rm -f *~ \#* .*~ .\#* -rm -f $(PACKAGE)_$(VERSION).tar.gz |