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/fuv/Makefile.orig.orig | |
parent | 83db47a8e8e9ee1bca9888f138fd225d5e9c3823 (diff) | |
download | calfuse-35d5e735b3219e7324cb560e1af58d18b384fe31.tar.gz |
Purge reference makefiles
Diffstat (limited to 'src/fuv/Makefile.orig.orig')
-rw-r--r-- | src/fuv/Makefile.orig.orig | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/src/fuv/Makefile.orig.orig b/src/fuv/Makefile.orig.orig deleted file mode 100644 index 528e6bc..0000000 --- a/src/fuv/Makefile.orig.orig +++ /dev/null @@ -1,75 +0,0 @@ - -CALFUSEDIR= ${PWD}/../.. -SHARED= -G -FITSVER= 2.470 - -# Symbols for include directories -FUSEINCLDIR= -I${CALFUSEDIR}/include - -# Symbols used for compiling -CC= cc -OPT= -O -DCFORTRAN -KPIC -CFLAGS= ${OPT} ${FUSEINCLDIR} - -FUSEBINDIR= ${CALFUSEDIR}/bin -FUSELIBDIR= -L${CALFUSEDIR}/lib -FUSELIBS= -lcfitsio-${FITSVER} -lsla -lcf -LIBS= -lc -lm -lnsl -ldl -lsocket -lsunmath -LDFLAGS= -Wl,-R${CALFUSEDIR}/lib,-R${CALFUSEDIR}/src/libcf - -# Symbols used for creating shared libraries - -BINS= cf_hist_init cf_ttag_init cf_convert_to_farf cf_remove_motions \ - cf_assign_wavelength cf_screen_photons cf_flux_calibrate \ - cf_extract_spectra cf_countmap cf_gainmap cf_bad_pixels - -all: ${BINS} - chmod g+w ${BINS} - -install: all - /bin/cp -p ${BINS} ${FUSEBINDIR} - -clean: - - /bin/rm -f ${BINS} - -distclean: - - /bin/rm -f ${BINS} - cd ../../bin; /bin/rm -f ${BINS} calfuse - -cf_hist_init: - ${CC} ${CFLAGS} -o cf_hist_init cf_hist_init.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_ttag_init: - ${CC} ${CFLAGS} -o cf_ttag_init cf_ttag_init.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_convert_to_farf: - ${CC} ${CFLAGS} -o cf_convert_to_farf cf_convert_to_farf.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_remove_motions: - ${CC} ${CFLAGS} -o cf_remove_motions cf_remove_motions.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_assign_wavelength: - ${CC} ${CFLAGS} -o cf_assign_wavelength \ - cf_assign_wavelength.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_screen_photons: - ${CC} ${CFLAGS} -o cf_screen_photons cf_screen_photons.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_flux_calibrate: - ${CC} ${CFLAGS} -o cf_flux_calibrate cf_flux_calibrate.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_extract_spectra: - ${CC} ${CFLAGS} -o cf_extract_spectra cf_extract_spectra.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} -cf_countmap: - ${CC} ${CFLAGS} -o cf_countmap cf_countmap.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} - -cf_gainmap: - ${CC} ${CFLAGS} -o cf_gainmap cf_gainmap.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} - -cf_bad_pixels: - ${CC} ${CFLAGS} -o cf_bad_pixels cf_bad_pixels.c \ - ${FUSELIBDIR} ${FUSELIBS} ${LIBS} ${LDFLAGS} - |