blob: 47cd3a8f4cd27c7c135bb06855a5119929ac1d55 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Make the LOCAL package.
$call update@src
$exit
update:
$call update@src
;
# STRIP -- Strip the LOCAL package directories of all sources and other files
# not required to run the system, or for user programming.
strip:
!rmfiles -f lib/strip.local
;
# SUMMARY -- [UNIX] mkpkg summary: output a summary of the spooled mkpkg
# output, omitting most of the mundane chatter. Used to scan large spool
# files for errors.
summary:
$ifeq (HOSTID, unix)
! grep -v ':$$' spool | grep -v '^xc' | grep -v '^ar'\
| grep -v '^check file'
$else
$echo "mkpkg summary only available on a UNIX system"
$endif
;
# SUN/IRAF multiple architecture support.
# ----------------------------------------
showfloat: # show current float option
$verbose off
!$(hlib)/mkfloat.csh
;
f68881: # install f68881 binaries
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh f68881 -d $(DIRS)
;
ffpa: # install ffpa binaries
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh ffpa -d $(DIRS)
;
fswitch: # install fswitch binaries
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh fswitch -d $(DIRS)
;
fsoft: # install fsoft binaries
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh fsoft -d $(DIRS)
;
sparc: # install sparc binaries
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh sparc -d $(DIRS)
;
|