blob: c41d9a34dd1eb20edf7c6c971d64e142dbe10f5c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Make the SPECFOCUS task.
$checkout libpkg.a ../
$update libpkg.a
$checkin libpkg.a ../
$exit
standalone:
$update libpkg.a
$omake x_specfocus.x
$link x_specfocus.o libpkg.a -lxtools -lcurfit -liminterp\
-o xx_specfocus.e
;
libpkg.a:
spfgraph.x specfocus.h <gset.h> <mach.h>
t_specfocus.x specfocus.h <error.h> <imhdr.h> <mach.h> <math.h>\
<math/curfit.h> <math/iminterp.h>
;
|