-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmake_all_ext2.bat
69 lines (69 loc) · 1.57 KB
/
make_all_ext2.bat
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
62
63
64
65
66
67
68
69
@echo off
rem Make all the SamaruX external commands from the built-in ones
rem Usage: make_all_ext2
call make_ext2 sx_ascii ascii
call make_ext2 sx_cat cat
call make_ext2 sx_chmod chmod
call make_ext2 sx_cp cp
call make_ext2 sx_cpm cpm
call make_ext2 sx_date date
call make_ext2 sx_df df
call make_ext2 sx_diral diralias
call make_ext2 sx_dump dump
call make_ext2 sx_ed ed
call make_ext2 sx_expr expr
call make_ext2 sx_fortu fortune
call make_ext2 sx_grep grep
call make_ext2 sx_head head
call make_ext2 sx_ls ls
call make_ext2 sx_man man
call make_ext2 sx_more more
call make_ext2 sx_mv mv
call make_ext2 sx_ps ps
call make_ext2 sx_rm rm
call make_ext2 sx_sleep sleep
call make_ext2 sx_sort sort
call make_ext2 sx_tail tail
call make_ext2 sx_tee tee
call make_ext2 sx_tty tty
call make_ext2 sx_type type
call make_ext2 sx_uname uname
call make_ext2 sx_ver ver
call make_ext2 sx_wc wc
call make_ext2 sx_whoam whoami
echo.
echo -------------
echo Build results
echo -------------
echo.
call make_tst ascii.x
call make_tst cat.x
call make_tst chmod.x
call make_tst cp.x
call make_tst cpm.x
call make_tst date.x
call make_tst df.x
call make_tst diralias.x
call make_tst dump.x
call make_tst ed.x
call make_tst expr.x
call make_tst fortune.x
call make_tst grep.x
call make_tst head.x
call make_tst ls.x
call make_tst man.x
call make_tst more.x
call make_tst mv.x
call make_tst ps.x
call make_tst rm.x
call make_tst sleep.x
call make_tst sort.x
call make_tst tail.x
call make_tst tee.x
call make_tst tty.x
call make_tst type.x
call make_tst uname.x
call make_tst ver.x
call make_tst wc.x
call make_tst whoami.x
echo.