Build script works when no eggs are installed - pee - Pee a password manager;Pe… | |
git clone git://vernunftzentrum.de/pee.git | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 8d4a716c3cd27de6b70d6f6d2e35b2c6eece5d46 | |
parent 4b2b2cd52f72819a07189666f4d7a99ce694d989 | |
Author: Kooda <[email protected]> | |
Date: Sun, 17 Jul 2016 16:09:51 +0200 | |
Build script works when no eggs are installed | |
Diffstat: | |
compile.sh | 12 ++++++------ | |
1 file changed, 6 insertions(+), 6 deletions(-) | |
--- | |
diff --git a/compile.sh b/compile.sh | |
@@ -17,19 +17,19 @@ chicken-install -r tweetnacl >/dev/null || echo Fetching tw… | |
chicken-install -r fmt > /dev/null || echo Fetching fmt has failed. | |
cd fmt | |
-csc -unit fmt -emit-import-library fmt -uses ports,srfi-1,srfi-69,srfi-13,extr… | |
+csc -unit fmt -emit-import-library fmt -uses ports,srfi-1,srfi-69,srfi-13,extr… | |
cd .. | |
cd matchable | |
csc -unit matchable -emit-import-library matchable -c matchable.scm -o matchab… | |
-mv matchable.o ..; cd .. | |
+mv matchable.o matchable.import.scm ..; cd .. | |
+csc -unit to-hex -emit-import-library to-hex -c string-utils/to-hex.scm -o to-… | |
+csc -unit type-errors -J -c ./check-errors/type-errors.scm -o type-errors.o | |
+csc -unit type-checks -uses type-errors -J -c ./check-errors/type-checks.scm -… | |
csc -unit blob-hexadecimal -uses type-checks -uses to-hex -emit-import-library… | |
csc -unit crypto-helper -uses blob-hexadecimal -emit-import-library crypto-hel… | |
-csc -unit foreigners -uses matchable -emit-import-library foreigners -c foreig… | |
+csc -unit foreigners -uses matchable -emit-import-library foreigners -emit-imp… | |
csc -unit getopt-long -uses srfi-13 -uses srfi-14 -uses data-structures -uses … | |
-csc -unit to-hex -emit-import-library to-hex -c string-utils/to-hex.scm -o to-… | |
csc -unit tweetnacl -emit-import-library tweetnacl -c tweetnacl/tweetnacl.scm … | |
-csc -unit type-checks -uses type-errors -J -c ./check-errors/type-checks.scm -… | |
-csc -unit type-errors -J -c ./check-errors/type-errors.scm -o type-errors.o | |
csc -uses matchable -uses foreigners -c stty/stty.scm -emit-import-library stt… | |
csc -uses srfi-1,srfi-4,srfi-13,srfi-14,utils,stty,crypto-helper,tweetnacl,get… | |
csc -static *o ./tweetnacl/tweetnacl.impl.o -o pee |