summaryrefslogtreecommitdiff
path: root/netfs/ice/Jamfile.jam
blob: cfb4f143c9b2b72777e9ec79024e63005ba55672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 :
	gen
	[ glob *.cpp ] :
	<library>..//Ice
	<library>..//pthread
	<library>..//adhocutil
	<implicit-dependency>gen
	: :
	<include>.
	<library>..//Ice
	<library>..//pthread
	<implicit-dependency>gen
	;

explicit install ;
alias install : install-lib install-slice ;
package.install install-lib : : : netfs-api : [ glob-tree *.h ] ;
package.install-data install-slice : netfs/ice : [ glob-tree *.ice ] ;