From 832b4b34ff8ce84a13751883c0822c16c152fe48 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 5 Mar 2015 12:53:09 -0500 Subject: Massive rework --- scripts/Makefile.am | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 scripts/Makefile.am (limited to 'scripts/Makefile.am') diff --git a/scripts/Makefile.am b/scripts/Makefile.am new file mode 100644 index 0000000..1f3b7d7 --- /dev/null +++ b/scripts/Makefile.am @@ -0,0 +1,30 @@ +bin_SCRIPTS = \ + calfuse.wavecal \ + cf_make_900_obs.csh \ + cf_make_all.csh \ + cf_make_all_obs.csh \ + cfsetup.csh \ + cfsetup.sh \ + idl_obsplot.pl \ + idlplot_rate.pl \ + idlplot_spex.pl \ + listhead \ + listtra + +EXTRA_DIST = cfsetup.csh.in \ + cfsetup.sh.in + +CLEANFILES = cfsetup.csh \ + cfsetup.sh + +do_subst = sed -e 's,[@]DATADIR[@],$(datadir),g' \ + -e 's,[@]PREFIX[@],$(prefix),g' \ + -e 's,[@]VERSION[@],$(VERSION),g' + +cfsetup.csh: cfsetup.csh.in Makefile + $(do_subst) < cfsetup.csh.in > cfsetup.csh + chmod +x cfsetup.csh + +cfsetup.sh: cfsetup.sh.in Makefile + $(do_subst) < cfsetup.sh.in > cfsetup.sh + chmod +x cfsetup.sh -- cgit