about summary refs log tree commit diff stats
path: root/subx/gen
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-01 12:22:59 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-01 12:27:39 -0700
commit57628c0e4461b8bb6e6024135bf1e7f46f650030 (patch)
tree52a9f28ac189dee50b63ceeb723d7a872701dab3 /subx/gen
parent5ece295328f872fa368e7852f62f363eb701c0f9 (diff)
downloadmu-57628c0e4461b8bb6e6024135bf1e7f46f650030.tar.gz
4638 - extract some common libraries from apps
I'm still trying to figure out what the defaults should be. At the moment
you have to explicitly pass in every file you want loaded into the output
binary. Maybe that control is a good thing. The examples need no libraries
so far.
Diffstat (limited to 'subx/gen')
-rwxr-xr-xsubx/gen2
1 files changed, 1 insertions, 1 deletions
diff --git a/subx/gen b/subx/gen
index a73d763b..fb2e7532 100755
--- a/subx/gen
+++ b/subx/gen
@@ -7,5 +7,5 @@ then
   exit $?
 fi
 
-CFLAGS=-g subx translate apps/$1.subx -o apps/`echo $1 |sed 's/\..*//'`
+CFLAGS=-g subx translate *.subx apps/$1.subx  -o apps/`echo $1 |sed 's/\..*//'`
 exit $?