aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar David Adam (zanchey) <zanchey@ucc.gu.uwa.edu.au>2013-07-30 22:09:12 +0800
committerGravatar David Adam (zanchey) <zanchey@ucc.gu.uwa.edu.au>2013-08-11 23:13:38 +0800
commitb1d8492c3f706d2d1a234eabaed2426fc67dc488 (patch)
tree5d0e913dab46e9911d66112a60fe2dfa243f53de /Makefile.in
parent75fe438f21f60243fcf6682b659f8d0054e6fc92 (diff)
Makefile.in: don't build dist stuff from Makefile, use build_tools
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in39
1 files changed, 0 insertions, 39 deletions
diff --git a/Makefile.in b/Makefile.in
index 7cbd159d..4d24e588 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -789,47 +789,12 @@ depend:
.PHONY: depend
#
-# Make compressed tar archives
-#
-
-fish-@PACKAGE_VERSION@.tar.gz: fish-@PACKAGE_VERSION@.tar
- gzip -f --best -c fish-@PACKAGE_VERSION@.tar >fish-@PACKAGE_VERSION@.tar.gz
-
-fish-@PACKAGE_VERSION@.tar.bz2: fish-@PACKAGE_VERSION@.tar
- bzip2 -f --best -k fish-@PACKAGE_VERSION@.tar
-
-dist: fish-@PACKAGE_VERSION@.tar.bz2
-.PHONY: dist
-
-#
# Build the RPM spec file.
#
fish.spec: fish.spec.in
./config.status
-
-
-#
-# Create .rpm file for the current systems architecture and an
-# .src.rpm file.
-#
-
-rpm: fish-@PACKAGE_VERSION@.tar.bz2 fish.spec
- @if which rpmbuild; then true; else \
- echo Could not find the rpmbuild command, needed to build an rpm; \
- echo You may be able to install it using the following command:; \
- echo \'yum install rpm-build\'; \
- false; \
- fi
- cp fish.spec /usr/src/redhat/SPECS/
- cp fish-@PACKAGE_VERSION@.tar.bz2 /usr/src/redhat/SOURCES/
- rpmbuild -ba --clean /usr/src/redhat/SPECS/fish.spec
- mv /usr/src/redhat/RPMS/*/fish*@PACKAGE_VERSION@*.rpm .
- mv /usr/src/redhat/SRPMS/fish*@PACKAGE_VERSION@*.src.rpm .
-.PHONY: rpm
-
-
#
# Cleanup targets
#
@@ -861,13 +826,9 @@ clean:
rm -f command_list.txt toc.txt
rm -f doc_src/index.hdr doc_src/commands.hdr
rm -f FISH-BUILD-VERSION-FILE
- rm -f fish-@PACKAGE_VERSION@.tar
- rm -f fish-@PACKAGE_VERSION@.tar.gz
- rm -f fish-@PACKAGE_VERSION@.tar.bz2
if test $(HAVE_DOXYGEN) = 1; then \
rm -rf doc user_doc share/man; \
fi
- rm -rf fish-@PACKAGE_VERSION@
rm -f $(TRANSLATIONS)
.PHONY: clean