xref: /haiku/Jamfile (revision 0b2dbe7d46ee888392907c60131b7f7652314175)
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
58	# Servers
59	media_addon_server
60	media_server
61
62	# Preference
63	Sounds
64	Media
65
66	# Deskbar replicant
67	desklink
68
69	# add-ons
70	mixer.media_addon
71	tone_producer_demo.media_addon
72	video_producer_demo.media_addon
73	legacy.media_addon
74	multi_audio.media_addon
75#	reader.media_addon
76#	writer.media_addon
77#	demultiplexer.media_addon
78
79	# codecs
80	ac3_decoder
81	aiff_reader
82	au_reader
83	avcodec
84	avi_reader
85	matroska
86	mp3_decoder
87	mp3_reader
88	musepack
89	ogg
90	raw_decoder
91	speex
92	vorbis
93	wav_reader
94	mov_reader
95;
96
97# Pseudo-target to build the input kit only
98NotFile InputKit ;
99Depends InputKit :
100	# Servers
101	input_server
102
103	# Addons
104	<input>keyboard
105	<input>mouse
106
107	# Apps
108	keymap
109
110	# Preferences
111	Keymap
112	Keyboard
113	Mouse
114;
115
116SubInclude OBOS_TOP src ;
117