From c80298ea7c5e8a37b3d8917fc33b74eb6c4fc78d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Tue, 24 Jan 2012 15:11:22 +1000 Subject: Oops, build lemon IN the lemon tree. Yay! A fruity pun. B-) --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 306eded..3a61050 100755 --- a/build.sh +++ b/build.sh @@ -24,10 +24,10 @@ names="lemon" objects="" for i in $names do - command="gcc $CFLAGS -c -o ../$i.o $i.c" + command="gcc $CFLAGS -c -o $i.o $i.c" echo $command $command - objects="$objects ../$i.o" + objects="$objects $i.o" done command="gcc $CFLAGS -o lemon $objects $LDFLAGS $libs" echo $command -- cgit v1.1