diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /noao/digiphot/apphot/mkpkg | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'noao/digiphot/apphot/mkpkg')
-rw-r--r-- | noao/digiphot/apphot/mkpkg | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/noao/digiphot/apphot/mkpkg b/noao/digiphot/apphot/mkpkg new file mode 100644 index 00000000..861aeea4 --- /dev/null +++ b/noao/digiphot/apphot/mkpkg @@ -0,0 +1,39 @@ +# Make the APPHOT package + +$call relink +$exit + +update: + $call relink + $call install + ; + +relink: + $set LIBS = "-lnlfit -liminterp -lcurfit -lds -lxtools" + $update libpkg.a + $omake x_apphot.x + $link x_apphot.o libpkg.a $(LIBS) -o xx_apphot.e + ; + +linkonly: + $set LIBS = "-lnlfit -liminterp -lcurfit -lds -lxtools" + $link x_apphot.o libpkg.a $(LIBS) -o xx_apphot.e + $call install + ; + +install: + $move xx_apphot.e noaobin$x_apphot.e + ; + +libpkg.a: + @aplib + @aputil + @center + @daofind + @fitpsf + @fitsky + @phot + @polyphot + @radprof + @wphot + ; |