| 1 | #==================================================================== |
|---|
| 2 | # NeXus - Neutron & X-ray Common Data Format |
|---|
| 3 | # |
|---|
| 4 | # Makefile compiler and directory options |
|---|
| 5 | # |
|---|
| 6 | # Copyright (C) 2002 Ray Osborn |
|---|
| 7 | # |
|---|
| 8 | # This library is free software; you can redistribute it and/or |
|---|
| 9 | # modify it under the terms of the GNU Lesser General Public |
|---|
| 10 | # License as published by the Free Software Foundation; either |
|---|
| 11 | # version 2 of the License, or (at your option) any later version. |
|---|
| 12 | # |
|---|
| 13 | # This library is distributed in the hope that it will be useful, |
|---|
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 16 | # Lesser General Public License for more details. |
|---|
| 17 | # |
|---|
| 18 | # You should have received a copy of the GNU Lesser General Public |
|---|
| 19 | # License along with this library; if not, write to the Free |
|---|
| 20 | # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
|---|
| 21 | # MA 02111-1307 USA |
|---|
| 22 | # |
|---|
| 23 | # For further information, see <http://www.nexusformat.org> |
|---|
| 24 | # |
|---|
| 25 | # $Id$ |
|---|
| 26 | # |
|---|
| 27 | #==================================================================== |
|---|
| 28 | #Edit the compiler flags as necessary |
|---|
| 29 | #CC=cc |
|---|
| 30 | #FC=g77 |
|---|
| 31 | #CFLAGS=-g |
|---|
| 32 | #FFLAGS=-g |
|---|
| 33 | #F90=f90 |
|---|
| 34 | #F90FLAGS= |
|---|
| 35 | #LDFLAGS=-g |
|---|
| 36 | #==================================================================== |
|---|
| 37 | #Compiler flags on DEC TRU64 UNIX |
|---|
| 38 | CC=cc |
|---|
| 39 | FC=f77 |
|---|
| 40 | CFLAGS= -I. -I../include -g -non_shared |
|---|
| 41 | FFLAGS=-g |
|---|
| 42 | F90=f90 |
|---|
| 43 | F90FLAGS= |
|---|
| 44 | LDFLAGS= |
|---|
| 45 | #==================================================================== |
|---|
| 46 | #Compiler flags for Absoft Pro Fortran 77 and 90 on Mac OS X |
|---|
| 47 | #CC=cc |
|---|
| 48 | #FC=g77 |
|---|
| 49 | #CFLAGS=-g -no-cpp-precomp -D__unix |
|---|
| 50 | #FFLAGS=-g -Wno-globals |
|---|
| 51 | #F90=f95 |
|---|
| 52 | #F90FLAGS=-g -cons -YEXT_NAMES=LCS -YEXT_SFX=_ |
|---|
| 53 | #LDFLAGS=-flat_namespace |
|---|
| 54 | #==================================================================== |
|---|
| 55 | #Compiler flags for Absoft Pro Fortran 90 on Linux |
|---|
| 56 | #CC=cc |
|---|
| 57 | #FC=f77 |
|---|
| 58 | #CFLAGS=-gdwarf -D__ABSOFT |
|---|
| 59 | #FFLAGS=-f |
|---|
| 60 | #F90=f90 |
|---|
| 61 | #F90FLAGS=-YEXT_NAMES=LCS |
|---|
| 62 | #LDFLAGS= |
|---|
| 63 | #==================================================================== |
|---|
| 64 | #Specify locations of the NeXus source files and HDF libraries |
|---|
| 65 | FROOT=/data/koenneck/src/nexus/src |
|---|
| 66 | H4ROOT=/usr/local |
|---|
| 67 | H5ROOT=/data/lnslib |
|---|