When buiding plugins, do not cref/generate-constructors for 'ALL.
authorMatt Birkholz <matt@birchwood-abbey.net>
Thu, 10 Mar 2016 20:01:10 +0000 (13:01 -0700)
committerMatt Birkholz <matt@birchwood-abbey.net>
Thu, 10 Mar 2016 20:01:10 +0000 (13:01 -0700)
This simplifies cleaning.

src/blowfish/compile.scm
src/gdbm/compile.scm
src/mcrypt/compile.scm
src/md5/compile.scm
src/mhash/compile.scm

index 29b4c5bf961ce33214764f4ed828617910fb1c22..c6cba0ee8289d20090d787660d9e76498cc2df8f 100644 (file)
@@ -5,4 +5,4 @@
 (load-option 'CREF)
 (load-option 'FFI)
 (compile-file "blowfish" '() (->environment '(RUNTIME)))
-(cref/generate-constructors "blowfish" 'ALL)
\ No newline at end of file
+(cref/generate-constructors "blowfish")
\ No newline at end of file
index 685ee26c3ce82a6ba0b9abaabff8c50a0c8ac355..fe20d1d59c3d4f8ccbbbdac512fe13327193ba57 100644 (file)
@@ -5,4 +5,4 @@
 (load-option 'CREF)
 (load-option 'FFI)
 (compile-file "gdbm" '() (->environment '(RUNTIME)))
-(cref/generate-constructors "gdbm" 'ALL)
\ No newline at end of file
+(cref/generate-constructors "gdbm")
\ No newline at end of file
index a83ce932ec8b50a10a2d98ebb4edc6ab83be3e2f..b1ade84a6d7fe75d4286e8c16cd1658c099580cd 100644 (file)
@@ -5,4 +5,4 @@
 (load-option 'CREF)
 (load-option 'FFI)
 (compile-file "mcrypt" '() (->environment '(RUNTIME)))
-(cref/generate-constructors "mcrypt" 'ALL)
\ No newline at end of file
+(cref/generate-constructors "mcrypt")
\ No newline at end of file
index ddf0ede07e7011e01edd39ea4ead7f76b081e04d..5217fc9efbe1c4a39f5a54ce989ca54cb8c71fdd 100644 (file)
@@ -5,4 +5,4 @@
 (load-option 'CREF)
 (load-option 'FFI)
 (compile-file "md5" '() (->environment '(RUNTIME)))
-(cref/generate-constructors "md5" 'ALL)
\ No newline at end of file
+(cref/generate-constructors "md5")
\ No newline at end of file
index 1103428d81e9da44815ed763cfb50545f8bd36ff..816740ca9f3087b2f0b7905e0a1d00c87ac1939b 100644 (file)
@@ -5,4 +5,4 @@
 (load-option 'CREF)
 (load-option 'FFI)
 (compile-file "mhash" '() (->environment '(RUNTIME)))
-(cref/generate-constructors "mhash" 'ALL)
\ No newline at end of file
+(cref/generate-constructors "mhash")
\ No newline at end of file