xref: /haiku/Jamfile (revision fef6144999c2fa611f59ee6ffe6dd7999501385c)
1SubDir OBOS_TOP ;
2
3InstallFloppy installfloppy : $(OBOS_FLOPPY) ;
4
5NotFile alltests ;
6Depends alltests : r5tests obostests ;
7
8NotFile doc_files ;
9Depends files : doc_files ;
10
11# Pseudo-target to build the mail kit only
12NotFile MailKit ;
13Depends MailKit :
14	libmail.so
15	mail_daemon
16	E-mail
17	BeMail
18
19	# mail_daemon addons
20	Inbox
21	Outbox
22	Message\ Parser
23	New\ Mail\ Notification
24	Match\ Header
25	R5\ Daemon\ Filter
26	IMAP
27	POP3
28	SMTP
29	Fortune
30;
31
32# Pseudo-target to build the network kit only
33NotFile NetworkingKit ;
34Depends NetworkingKit :
35	net_stack_driver net_server_driver
36	core
37	ethernet loopback ppp
38	raw route ipv4 icmp udp tcp
39	libnet.so libnetapi.so libbind.so libsocket.so
40	ping ifconfig <bin>route traceroute arp pppconfig
41
42	# network drivers:
43	sis900 rtl8139 rtl8169 via-rhine ipro1000 wb840 bcm440x bcm570x
44
45	# PPP devices:
46	modem pppoe
47	# PPP protocols:
48	ipcp
49	# PPP authenticators:
50	pap
51;
52
53# Pseudo-target to build the media stuffs only
54NotFile MediaKit ;
55Depends MediaKit :
56	libmedia.so
57	libgame.so
58
59	# Servers
60	media_addon_server
61	media_server
62
63	# Preference
64	Sounds
65	Media
66
67	# Deskbar replicant
68	desklink
69
70	# add-ons
71	mixer.media_addon
72	tone_producer_demo.media_addon
73	video_producer_demo.media_addon
74	legacy.media_addon
75	multi_audio.media_addon
76#	reader.media_addon
77#	writer.media_addon
78#	demultiplexer.media_addon
79
80	# codecs
81	ac3_decoder
82	aiff_reader
83	au_reader
84	avcodec
85	avi_reader
86	matroska
87	mp3_decoder
88	mp3_reader
89	musepack
90	ogg
91	raw_decoder
92	speex
93	vorbis
94	wav_reader
95	mov_reader
96;
97
98# Pseudo-target to build the input kit only
99NotFile InputKit ;
100Depends InputKit :
101	# Servers
102	input_server
103
104	# Addons
105	<input>keyboard
106	<input>mouse
107
108	# Apps
109	keymap
110
111	# Preferences
112	Keymap
113	Keyboard
114	Mouse
115;
116
117# Pseudo-target to build the OpenGL kit only
118NotFile OpenGLKit ;
119Depends OpenGLKit :
120	libGL.so
121	GLTeapot
122	GLInfo
123;
124
125SubInclude OBOS_TOP src ;
126