blob: 456232e83b0e95e2655cd4542a0eacce9245cc2d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Make the IMCOMBINE Task.
$checkout libpkg.a ../../../
$update libpkg.a
$checkin libpkg.a ../../../
$exit
standalone:
$set LIBS1 = "src/libimc.a -lxtools -lcurfit -lsurfit -lgsurfit"
$set LIBS2 = "-liminterp -lnlfit -lslalib -lncar -lgks"
$update libimc.a@src
$update libpkg.a
$omake x_imcombine.x
$link x_imcombine.o libpkg.a $(LIBS1) $(LIBS2) -o xx_imcombine.e
;
libpkg.a:
t_imcombine.x src/icombine.com src/icombine.h <error.h> <mach.h> \
<imhdr.h>
;
|