summary refs log tree commit diff stats
path: root/article/math-science-and-philosophy.html
diff options
context:
space:
mode:
authorAndrew <andrew@andrewyu.org>2023-01-04 22:20:04 +0800
committerAutomatic Merge <andrew+automerge@andrewyu.org>2023-07-15 00:29:38 +0800
commitc97f77d2550e8b6fb24209fc6e8961d4bda76be1 (patch)
tree06b14b6640bcaffd6496d80ad3615b7669d3a65a /article/math-science-and-philosophy.html
parent8cd406fb624a767f3980d8aad5ac10c25b543d13 (diff)
downloadwww-c97f77d2550e8b6fb24209fc6e8961d4bda76be1.tar.gz
Poem and whiskers fiction
Diffstat (limited to 'article/math-science-and-philosophy.html')
0 files changed, 0 insertions, 0 deletions
5f569c1777e4062b2d4379ed4b17b9d0b18281'>^
86d8f1f3 ^
1
2
3
4
5
6
7
8
9
10
11
                  
                                    
 

                    
                                                                                   


         
                                                                                 
       
#!/usr/bin/env zsh
# Build commonly-used SubX programs.

if [[ $1 == 'ex'* ]]
then
  CFLAGS=-g ./subx translate examples/$1.subx -o examples/`echo $1 |sed 's/\..*//'`
  exit $?
fi

CFLAGS=-g ./subx translate *.subx apps/$1.subx  -o apps/`echo $1 |sed 's/\..*//'`
exit $?