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