factor/contrib/usb/load.factor

14 lines
298 B
Factor
Raw Normal View History

2006-09-14 23:04:43 -04:00
! Copyright (C) 2006 Chris Double.
! See http://factorcode.org/license.txt for BSD license.
2006-09-14 23:12:19 -04:00
USING: kernel ;
2006-09-14 23:04:43 -04:00
PROVIDE: contrib/usb {
2006-09-14 23:12:19 -04:00
"usb-common.factor"
{ "usb-unix.factor" [ unix? ] }
{ "usb-win32.factor" [ win32? ] }
2006-09-14 23:20:26 -04:00
{ "usb-macosx.factor" [ macosx? ] }
2006-09-14 23:04:43 -04:00
"usb.factor"
"usb.facts"
2006-09-14 23:04:43 -04:00
} {
} ;