Changes in trunk/apps [1819:1941]


Ignore:
Location:
trunk/apps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/apps/Makefile

    r1819 r1941  
    88CASAARCH  := $(word 2, $(CASAPATH))
    99
     10CORELIB := $(shell $(shell make -s -f $(CASAROOT)/$(CASAARCH)/makedefs VARS=CORELIB eval_vars) && echo $$CORELIB)
    1011COREINCD := $(shell $(shell make -s -f $(CASAROOT)/$(CASAARCH)/makedefs VARS=COREINCD eval_vars) && echo $$COREINCD)
    1112CASALIB   := $(CASAROOT)/$(CASAARCH)/lib
     
    1718
    1819# compiler flags
    19 CXXFLAGS := -fPIC -O3 -g
    20 CXXFLAGS += -ansi -Wno-long-long -Wall
    21 CXXFLAGS := -Xlinker -rpath -Xlinker $(CASALIB)
     20CXXFLAGS := $(shell $(shell make -s -f $(CASAROOT)/$(CASAARCH)/makedefs VARS=CXXFLAGS eval_vars) && echo $$CXXFLAGS)
     21CXXFLAGS += -fPIC -O3 -Xlinker -rpath -Xlinker $(CASALIB)
    2222
    2323
    2424INCDIRS   := -I$(COREINCD)
    25 LIBS      := -L$(CASALIB) -lcasa_tables -lcasa_casa
     25LIBS      := -L$(CASALIB) $(CORELIB)
    2626
    2727OBJECTS := asap2to3
  • trunk/apps/asap2to3.cpp

    r1819 r1941  
    2929  Int verid=tab.rwKeywordSet().fieldNumber("VERSION");
    3030  tab.rwKeywordSet().define(verid,uInt(3));
     31  tab.tableInfo().setType("Scantable");
    3132  cout << "WARNING: This has invalidated the parallactic angle in the data. Reprocess the data in ASAP 3 "
    3233       << "if you need to handle polarisation conversions"
Note: See TracChangeset for help on using the changeset viewer.