source: trunk/Makefile@ 737

Last change on this file since 737 was 736, checked in by mar637, 19 years ago

changes to dist target

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
RevLine 
[736]1PREFIX := /usr
[633]2PYDIR := $(PREFIX)/lib/python2.3/site-packages
[372]3
[633]4ifndef ASAPROOT
5 ASAPROOT := $(shell pwd)
[372]6endif
7
[633]8PY := $(wildcard python/*.py)
[692]9LIBS := /tmp/_asap.so
[633]10BINS := bin/asap
[372]11
[692]12CASAROOT := $(word 1, $(AIPSPATH))
13PLATFORM := $(word 2, $(AIPSPATH))
14DISTDIR := asap_$(PLATFORM)
15
[633]16all: module #doc
[372]17
[633]18module:
19 @cd $(ASAPROOT)/src; make
20
21doc:
22 @cd $(ASAPROOT)/doc; make
23
[692]24install:
[633]25 @if ( test ! -d $(PYDIR)/asap ) ; then mkdir -p $(PYDIR)/asap ; fi
26 @for file in $(LIBS) ; do cp -f $$file $(PYDIR)/asap ; done
27 @for file in $(BINS) ; do cp -f $$file $(PREFIX)/bin ; done
28 @for file in $(PY) ; do cp -f $$file $(PYDIR)/asap ; done
[692]29 @if ( test ! -d $(PREFIX)/share/asap ) ; then mkdir -p $(PREFIX)/share/asap ; fi
30 @cp -f share/ipythonrc-asap $(PREFIX)/share/asap/
[633]31 @echo "Successfully installed asap module to" $(PYDIR)
32
33clean:
34 @cd $(ASAPROOT)/src; make clean
[692]35 @cd $(ASAPROOT)/doc; make clean
[633]36
[692]37datadist:
[736]38 @echo "Generating ASAP data archive from aips++ installation..."
39 @cd $(CASAROOT); tar cfj $(ASAPROOT)/$(DISTDIR)/share/data.tar.bz2 data/ephemerides data/geodetic
40 @echo "...done."
[692]41
42
43dist: module doc
44 @cd $(ASAPROOT)
45 @if ( test -d $(DISTDIR) ) ; then rm -rf $(DISTDIR) ; fi
46 @mkdir $(DISTDIR)
47 @mkdir $(DISTDIR)/build $(DISTDIR)/bin $(DISTDIR)/share
48 @for file in $(LIBS) ; do cp -f $$file $(DISTDIR)/build/ ; done
49 @for file in $(PY) ; do cp -f $$file $(DISTDIR)/build/ ; done
50 @for file in $(BINS) ; do cp -f $$file $(DISTDIR)/bin/ ; done
51 @cp -f share/ipythonrc-asap $(DISTDIR)/share/
52 make datadist
[736]53 @cp -f doc/README $(DISTDIR)/
54 @cp -f admin/install.sh $(DISTDIR)/bin/
[692]55 @echo "Creating compressed archive..."
56 @tar jcf $(DISTDIR).tar.bz2 $(DISTDIR)
[736]57 @rm -rf $(DISTDIR)/
[692]58 @echo "Successfully created binary package" $(DISTDIR).tar.bz2
59
[633]60.PHONY: install clean
Note: See TracBrowser for help on using the repository browser.