1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# Make the HEADERS package
#
# Special keywords recognized by IRAF mkpkg files:
#
# mkpkg relink update object library and link
# mkpkg linkonly skip object library updates and just link
# mkpkg install move executable to lib$
# mkpkg update update object library, link, and move to lib$
$call relink
$exit
update:
$call relink
$call install
;
relink:
$update headers.a
$call headers
;
install:
$move xx_headers.e st4gembin$x_headers.e
;
headers:
linkonly:
$omake x_headers.x
$link x_headers.o headers.a \
-lstxtools -lgflib -lgilib \
-o xx_headers.e
;
headers.a:
@lib
@hdiff
;
|