From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- pkg/images/lib/mkpkg | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 pkg/images/lib/mkpkg (limited to 'pkg/images/lib/mkpkg') diff --git a/pkg/images/lib/mkpkg b/pkg/images/lib/mkpkg new file mode 100644 index 00000000..dd55f750 --- /dev/null +++ b/pkg/images/lib/mkpkg @@ -0,0 +1,72 @@ +# Library for the IMAGES package containing routines used by tasks in +# different subpackages + +$checkout libpkg.a ../ +$update libpkg.a +$checkin libpkg.a ../ +$exit + +generic: + $set GEN = "$$generic -k" + + $ifolder (geofit.x,geofit.gx) + $(GEN) geofit.gx -o geofit.x $endif + $ifolder (geogmap.x,geogmap.gx) + $(GEN) geogmap.gx -o geogmap.x $endif + $ifolder (geograph.x,geograph.gx) + $(GEN) geograph.gx -o geograph.x $endif + + $ifolder (liststr.x, liststr.gx) + $(GEN) liststr.gx -o liststr.x $endif + ; + +libpkg.a: + $ifeq (USE_GENERIC, yes) $call generic $endif + + # used by imcopy, lineclean tasks + imcopy.x + + # used by xregister, psfmatch tasks + rgbckgrd.x + rgcontour.x \ + + rgfft.x + + # used by geoxytran and other list reading and writing tasks + liststr.x + + # geomap, ccmap, and other tasks?, should be fmtio routine which is + # the reverse of strdic + rgwrdstr.x + + # used by ccmap, ccsetwcs, cctran, skyxymatch, skyctran, imcctran + # ccxymatch tasks + # put in xtools at some point ? + #skywcs.x \ + # "skywcs.h" "skywcsdef.h" + + # used by ccmap, ccxymatch + rgccwcs.x + + # used by xyxymatch, ccxymatch, imtile tasks + rgsort.x + + # used by skyxymatch and imctran tasks, include in skywcs.x ? + rglltran.x + + # used by skyxymatch, wcsxymatch, imcctran tasks + rgxymatch.x + + # used by ccxymatch, xyxymatch tasks + rgmerge.x "xyxymatch.h" + rgtransform.x "xyxymatch.h" + xymatch.x "xyxymatch.h" + + # used by ccmap, geomap tasks + geofit.x "geomap.h" + geogmap.x "geomap.h" \ + "geogmap.h" + geograph.x \ + "geomap.h" "geogmap.h" + geoset.x "geomap.h" + ; -- cgit