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 /vo/votest/mkpkg | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'vo/votest/mkpkg')
-rw-r--r-- | vo/votest/mkpkg | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/vo/votest/mkpkg b/vo/votest/mkpkg new file mode 100644 index 00000000..30b8f618 --- /dev/null +++ b/vo/votest/mkpkg @@ -0,0 +1,28 @@ +# Make the VO test package compiled tasks. + +$checkout libvo.a vobin$ +$call relink +$checkin libvo.a vobin$ +$exit + +update: + $call relink + $call install + ; + +relink: + $set LIBS = "-lvo" + + $update libpkg.a + $omake x_votest.x + $link x_votest.o libpkg.a $(LIBS) -o xx_votest.e + ; + +install: + $move xx_vvotest.e vobin$x_votest.e + ; + + +libpkg.a: + $set XFLAGS = "$(XFLAGS) -g -q" + ; |