Changeset 1898
- Timestamp:
- 08/25/10 11:43:58 (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/external-alma/Makefile
r1896 r1898 6 6 ATNFDIR := $(EXTDIR)/atnf 7 7 8 # the casa environment AIPSPATH has to be defined8 # the casa environment CASAPATH has to be defined 9 9 CASAROOT := $(word 1, $(CASAPATH)) 10 10 CASAARCH := $(word 2, $(CASAPATH)) … … 26 26 #USELIB := lib64 27 27 28 if neq (,$(findstring "darwin", "$(CASAARCH)"))28 ifeq ($(shell uname), Darwin) 29 29 TARGETLIB := libatnf.dylib 30 30 else … … 53 53 54 54 LDFLAGS += -shared 55 if neq (, $(findstring "darwin", "$(CASAARCH)"))55 ifeq ($(shell uname), Darwin) 56 56 LDFLAGS += -headerpad_max_install_names -install_name $(CASAROOT)/$(CASAARCH)/lib/$(TARGETLIB) 57 57 endif -
trunk/src/Makefile
r1894 r1898 60 60 61 61 # darwin specific CASA flags 62 if neq (,$(findstring $(CASAARCH)", "darwin"))62 ifeq ($(shell uname), Darwin) 63 63 CASAPPLIB += -framework vecLib 64 64 else
Note:
See TracChangeset
for help on using the changeset viewer.