blob: e551fa3f2a320ee7944a2c4d709cab745846fe4a (
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
|
#!/usr/bin/env zsh
# Build a specific example.
if [[ $1 == 'ex'* ]]
then
CFLAGS=-g subx translate $1.subx `echo $1 |sed 's/\..*//'`
exit $?
fi
if [ $1 = test1 ]
then
gcc -Wall -s teensy/test1.c -o teensy/test1
exit $?
fi
if [ $1 = test2 ]
then
nasm -f elf teensy/test2.s && gcc -Wall -s teensy/test2.o -o teensy/test2
exit $?
fi
if [ $1 = test3 ]
then
nasm -f elf teensy/test3.s && gcc -Wall -s -nostartfiles teensy/test3.o -o teensy/test3
exit $?
fi
if [ $1 = test4 ]
then
nasm -f elf teensy/test4.s && gcc -Wall -s -nostdlib teensy/test4.o -o teensy/test4
exit $?
fi
if [ $1 = test5 ]
then
nasm -f bin teensy/test5.s -o teensy/test5 && chmod +x teensy/test5
exit $?
fi
if [ $1 = test6 ]
then
nasm -f elf teensy/test6-global.s && gcc -Wall -s teensy/test6-global.o -o teensy/test6
exit $?
fi
if [ $1 = test7 ]
then
nasm -f bin teensy/test7-global.s -o teensy/test7 && chmod +x teensy/test7
exit $?
fi
exit 127
|