Last change
on this file since 2951 was 1764, checked in by Kana Sugimoto, 14 years ago |
New Development: No
JIRA Issue: No (a bug fix)
Ready for Test: Yes
Interface Changes: No
What Interface Changed:
Test Programs: gmake; gmake install @$ASAPROOT on osx
Put in Release Notes: No
Module(s): asap2to3
Description: fixed a bug for osx
|
File size:
895 bytes
|
Rev | Line | |
---|
[1761] | 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 |
|
---|
| 6 | # the casa environment AIPSPATH has to be defined
|
---|
| 7 | CASAROOT := $(word 1, $(CASAPATH))
|
---|
| 8 | CASAARCH := $(word 2, $(CASAPATH))
|
---|
| 9 |
|
---|
| 10 | COREINCD := $(shell $(shell make -s -f $(CASAROOT)/$(CASAARCH)/makedefs VARS=COREINCD eval_vars) && echo $$COREINCD)
|
---|
| 11 | CASALIB := $(CASAROOT)/$(CASAARCH)/lib
|
---|
| 12 |
|
---|
| 13 | # the compiler
|
---|
| 14 | ifndef CXX
|
---|
| 15 | CXX := g++
|
---|
| 16 | endif
|
---|
| 17 |
|
---|
| 18 | # compiler flags
|
---|
[1764] | 19 | CXXFLAGS := -fPIC -O3 -g
|
---|
[1761] | 20 | CXXFLAGS += -ansi -Wno-long-long -Wall
|
---|
[1764] | 21 | CXXFLAGS := -Xlinker -rpath -Xlinker $(CASALIB)
|
---|
[1761] | 22 |
|
---|
| 23 |
|
---|
| 24 | INCDIRS := -I$(COREINCD)
|
---|
| 25 | LIBS := -L$(CASALIB) -lcasa_tables -lcasa_casa
|
---|
| 26 |
|
---|
| 27 | OBJECTS := asap2to3
|
---|
| 28 |
|
---|
| 29 | .SUFFIXES: .cpp
|
---|
| 30 |
|
---|
| 31 | .cpp:
|
---|
| 32 | $(CXX) $(CXXFLAGS) $(INCDIRS) $(LIBS) -o $@ $<
|
---|
| 33 |
|
---|
| 34 | all : $(OBJECTS)
|
---|
| 35 |
|
---|
| 36 | $(OBJECTS):
|
---|
| 37 |
|
---|
| 38 | clean :
|
---|
| 39 | -rm -f $(OBJECTS)
|
---|
Note:
See
TracBrowser
for help on using the repository browser.