diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 01:37:20 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-03-07 01:37:20 -0500 |
commit | 35d5e735b3219e7324cb560e1af58d18b384fe31 (patch) | |
tree | 680d18f6d7945ae0899e61b6518a774c1113437f /src/cal/geom | |
parent | 83db47a8e8e9ee1bca9888f138fd225d5e9c3823 (diff) | |
download | calfuse-35d5e735b3219e7324cb560e1af58d18b384fe31.tar.gz |
Purge reference makefiles
Diffstat (limited to 'src/cal/geom')
-rw-r--r-- | src/cal/geom/Makefile.orig.orig | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/cal/geom/Makefile.orig.orig b/src/cal/geom/Makefile.orig.orig deleted file mode 100644 index 5b23afd..0000000 --- a/src/cal/geom/Makefile.orig.orig +++ /dev/null @@ -1,43 +0,0 @@ -VERSION= v1.8 - -CALFUSEDIR= ${PWD}/../../.. - -# Symbols for include directories -FUSEINCLDIR= -I${CALFUSEDIR}/include - -# Symbols used for compiling -CC= cc -# Romelfanger's optimizations -# OPT= -fast -xO5 -xtarget=ultra2 -xarch=v8plusa -# -# SunWorld's optimizations -# OPT= -p -v -xO2 -xdepend -xchip=ultra -xarch=generic -OPT= -g -#OPT= -O -DCFORTRAN -KPIC -DSOLARIS -CFLAGS= ${OPT} ${FUSEINCLDIR} - -# Symbols used for creating shared binaries -FUSEBINDIR= ${CALFUSEDIR}/bin -FUSELIBDIR= -L${CALFUSEDIR}/lib -LIBDIR= -L/opt/SUNWspro/lib -FUSELIBS= -lsla -lcfitsio -lcf -LIBS= -lc -lm -lnsl -ldl -lsocket -lsunmath -lM77 -lF77 -LDFLAGS= - -# binaries to be made - -BINS= make_geom_file - -all: ${BINS} - chmod g+rw ${BINS} - -install: all - /bin/cp ${BINS} ${FUSEBINDIR} - -clean: - /bin/rm -f ${BINS} - -make_geom_file: - ${CC} ${CFLAGS} -o make_geom_file make_geom_file.c \ - ${FUSELIBDIR} ${LIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} - |