blob: 7af807cdac6264bafc4ca23cf65d592ba6b0d7c4 (
plain) (
blame)
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
39
40
41
|
# LONGSLIT Package
$call relink
$exit
update:
$call relink
$call install
;
relink:
$update libpkg.a
$call longslit
;
install:
$move xx_longslit.e noaobin$x_longslit.e
;
longslit:
$omake x_longslit.x
$omake x_longslit.x
$link x_longslit.o libpkg.a -lsmw -lxtools -lcurfit -liminterp\
-lgsurfit -o xx_longslit.e
;
libpkg.a:
@transform
@lscombine
airmass.x <math.h>
extinction.x <error.h> <imhdr.h>
fluxcalib.x <error.h> <imhdr.h> <math/iminterp.h>
getdaxis.x
illumination.x <error.h> <imhdr.h> <math/iminterp.h> <pkg/gtools.h>\
<pkg/rg.h> <pkg/xtanswer.h>
ilsetbins.x <gset.h> <imhdr.h> <pkg/gtools.h> <pkg/rg.h>\
<pkg/xtanswer.h>
lstools.x <imhdr.h>
response.x <imhdr.h> <pkg/gtools.h> <pkg/xtanswer.h>
;
|