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/fes/Makefile.Linux.orig | |
parent | 83db47a8e8e9ee1bca9888f138fd225d5e9c3823 (diff) | |
download | calfuse-35d5e735b3219e7324cb560e1af58d18b384fe31.tar.gz |
Purge reference makefiles
Diffstat (limited to 'src/fes/Makefile.Linux.orig')
-rw-r--r-- | src/fes/Makefile.Linux.orig | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/fes/Makefile.Linux.orig b/src/fes/Makefile.Linux.orig deleted file mode 100644 index af548ac..0000000 --- a/src/fes/Makefile.Linux.orig +++ /dev/null @@ -1,44 +0,0 @@ - -SHARED= -shared -FITSVER= 2.470 -CALFUSEDIR= ${PWD}/../.. - -# Symbols for include directories -FUSEINCLDIR= -I${CALFUSEDIR}/include - -# Symbols used for compiling -CC= cc -OPT= -g -Wall -DCFORTRAN -Dg77Fortran -Df2cFortran -CFLAGS = ${OPT} ${FUSEINCLDIR} - -# Symbols used for creating shared binaries -FUSEBINDIR= ${CALFUSEDIR}/bin -FUSELIBDIR= -L${CALFUSEDIR}/lib -LIBDIR= -FUSELIBS= -lsla -lcfitsio-${FITSVER} -lcf -LIBS= -lc -lm -lnsl -ldl -lgfortran -LDFLAGS= -Wl,-R${CALFUSEDIR}/lib - -OBJECTS= cf_calfes.o cf_fes_init.o cf_fes_read.o cf_fes_write.o \ - cf_fes_cal.o cf_fes_get_cal_image.o cf_limbang.o \ - cf_fes_apply_bias.o cf_fes_apply_flat.o cf_fes_apply_mask.o - -all: cf_calfes - -cf_calfes: ${OBJECTS} - ${CC} ${CFLAGS} -o cf_calfes ${OBJECTS} \ - ${FUSELIBDIR} ${LIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} - chmod g+rw cf_calfes - -install: cf_calfes - /bin/cp cf_calfes ${FUSEBINDIR} - -clean: - /bin/rm -f ${OBJECTS} cf_calfes - -distclean: - /bin/rm -f ${OBJECTS} cf_calfes - cd ../../bin; /bin/rm -f cf_calfes - -lint: ${SOURCES} - lint ${SOURCES} |