blob: 861aeea452228917515fd0408e7752678b6af315 (
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
|
# 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
;
|