summaryrefslogtreecommitdiff
path: root/netfs/ice
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/ice')
-rw-r--r--netfs/ice/Jamfile.jam12
1 files changed, 11 insertions, 1 deletions
diff --git a/netfs/ice/Jamfile.jam b/netfs/ice/Jamfile.jam
index 6f5036f..cfb4f14 100644
--- a/netfs/ice/Jamfile.jam
+++ b/netfs/ice/Jamfile.jam
@@ -1,14 +1,24 @@
import package ;
+obj directory : directory.ice : <toolset>tidy:<checker>none ;
+obj exceptions : exceptions.ice : <toolset>tidy:<checker>none ;
+obj file : file.ice : <toolset>tidy:<checker>none ;
+obj service : service.ice : <toolset>tidy:<checker>none ;
+obj types : types.ice : <toolset>tidy:<checker>none ;
+obj volume : volume.ice : <toolset>tidy:<checker>none ;
+alias gen : directory exceptions file service types volume ;
lib netfs-api :
- [ glob *.cpp *.ice ] :
+ gen
+ [ glob *.cpp ] :
<library>..//Ice
<library>..//pthread
<library>..//adhocutil
+ <implicit-dependency>gen
: :
<include>.
<library>..//Ice
<library>..//pthread
+ <implicit-dependency>gen
;
explicit install ;