diff options
author | Matt Wilson <msw@redhat.com> | 2000-03-23 21:46:04 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-03-23 21:46:04 +0000 |
commit | 0af1fe1127fce430e8a4f4a506195e9a7ee867a2 (patch) | |
tree | 83ee5f535f472fee45e601dacd13450b8ea294b9 /Makefile | |
parent | da06288c5d351135d66131e6ec713db2d11b73d2 (diff) | |
download | anaconda-0af1fe1127fce430e8a4f4a506195e9a7ee867a2.tar.gz anaconda-0af1fe1127fce430e8a4f4a506195e9a7ee867a2.tar.xz anaconda-0af1fe1127fce430e8a4f4a506195e9a7ee867a2.zip |
1) added archiev target as alias for create-archive
2) changed version to 7.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,6 @@ include Makefile.inc -VERSION = 6.2.2 +VERSION = 7.0 ARCH := $(patsubst i%86,i386,$(shell uname -m)) ARCH := $(patsubst sparc%,sparc,$(ARCH)) @@ -103,6 +103,8 @@ install: all install *.so $(DESTDIR)/$(PYTHONLIBDIR) for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) DESTDIR=`cd $(DESTDIR); pwd` -C $$d install; done +archive: create-archive + create-archive: @rm -rf /tmp/anaconda @rm -rf /tmp/anaconda-$(VERSION) |