source: trunk/Makefile@ 1888

Last change on this file since 1888 was 1879, checked in by Kana Sugimoto, 14 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

Test Programs: make & make install

Put in Release Notes: No

Module(s): none

Description: Modified Makefile-s so that libatnf.so is installed at the time of "make install" instead of "make"


File size: 2.5 KB
Line 
1### Notice:
2### This Makefile assumes CASA+CASACore enviroment.
3### For who wants to build ASAP with older CASA without CASACore
4### environment, replace $(CASAPATH) with $(AIPSPATH).
5#for mac
6#PREFIX := /opt/casa/darwin
7#for linux
8PREFIX := $(word 1, $(CASAPATH))/$(word 2,$(CASAPATH))
9PYDIR := $(PREFIX)/python/2.5
10
11ifndef ASAPROOT
12 ASAPROOT := $(shell pwd)
13endif
14ATNFD := external-alma
15
16#PY := $(wildcard python/*.py)
17PY := $(wildcard python/*.py python/svninfo.txt)
18LIBS := /tmp/_asap.so
19BINS := bin/asap
20APPS := apps/asap2to3
21
22CASAROOT := $(word 1, $(CASAPATH))
23PLATFORM := $(word 2, $(CASAPATH))
24DISTDIR := asap_$(PLATFORM)
25
26all: module #doc
27
28module:
29 @if ( test -f getsvnrev.sh ) ; then /bin/bash getsvnrev.sh ; fi
30 @cd $(ASAPROOT)/$(ATNFD); make
31 @cd $(ASAPROOT)/src; make
32 @cd $(ASAPROOT)/apps; make
33
34doc:
35 @cd $(ASAPROOT)/doc; make
36
37
38install:
39 @if ( test -f getsvnrev.sh ) ; then /bin/bash getsvnrev.sh ; fi
40 @if ( test ! -d $(PYDIR)/asap ) ; then mkdir -p $(PYDIR)/asap ; fi
41 @if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
42 @for file in $(LIBS) ; do cp -f $$file $(PYDIR)/asap ; done
43 @for file in $(BINS) ; do cp -f $$file $(PREFIX)/bin ; done
44 @for file in $(PY) ; do cp -f $$file $(PYDIR)/asap ; done
45 @for file in $(APPS) ; do cp -f $$file $(PREFIX)/bin ; done
46 @if ( test ! -d $(PREFIX)/share/asap ) ; then mkdir -p $(PREFIX)/share/asap ; fi
47 @cp -f share/ipythonrc-asap $(PREFIX)/share/asap/
48 @cd $(ASAPROOT)/$(ATNFD); make install
49 @echo "Successfully installed asap module to" $(PYDIR)
50
51clean:
52 @cd $(ASAPROOT)/src; make clean
53 @cd $(ASAPROOT)/doc; make clean
54 @cd $(ASAPROOT)/$(ATNFD); make realclean
55
56datadist:
57 @echo "Generating ASAP data archive from aips++ installation..."
58 @cd $(CASAROOT); tar cfj $(ASAPROOT)/$(DISTDIR)/share/data.tar.bz2 data/ephemerides data/geodetic
59 @echo "...done."
60
61
62dist: module doc
63 @cd $(ASAPROOT)
64 @if ( test -d $(DISTDIR) ) ; then rm -rf $(DISTDIR) ; fi
65 @mkdir $(DISTDIR)
66 @mkdir $(DISTDIR)/build $(DISTDIR)/bin $(DISTDIR)/share
67 @for file in $(LIBS) ; do cp -f $$file $(DISTDIR)/build/ ; done
68 @for file in $(PY) ; do cp -f $$file $(DISTDIR)/build/ ; done
69 @for file in $(BINS) ; do cp -f $$file $(DISTDIR)/bin/ ; done
70 @cp -f share/ipythonrc-asap $(DISTDIR)/share/
71 make datadist
72 @cp -f doc/README $(DISTDIR)/
73 @cp -f doc/CHANGELOG $(DISTDIR)/
74 @cp -f bin/install.sh $(DISTDIR)/bin/
75 @echo "Creating compressed archive..."
76 @tar jcf $(DISTDIR).tar.bz2 $(DISTDIR)
77 @rm -rf $(DISTDIR)/
78 @echo "Successfully created binary package" $(DISTDIR).tar.bz2
79
80.PHONY: install clean
Note: See TracBrowser for help on using the repository browser.