]> git.sesse.net Git - vlc/blob - plugins/beos/Makefile
e185457bf5f496f6a23370793a3d77135b46b5ab
[vlc] / plugins / beos / Makefile
1 ###############################################################################
2 # vlc (VideoLAN Client) BeOS module Makefile
3 # (c)2001 VideoLAN
4 ###############################################################################
5
6 #
7 # Objects
8 #
9
10 PLUGIN_CPP = beos.o aout_beos.o vout_beos.o intf_beos.o DrawingTidbits.o TransportButton.o
11 BUILTIN_CPP = $(PLUGIN_CPP:%.o=BUILTIN_%.o)
12
13 ALL_OBJ = $(PLUGIN_CPP) $(BUILTIN_CPP)
14
15 #
16 # Virtual targets
17 #
18
19 include ../../Makefile.modules
20
21 #
22 # Real targets
23 #
24
25 ../../lib/beos.so: $(PLUGIN_CPP)
26         $(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) $(LIB_BEOS)
27
28 ../../lib/beos.a: $(BUILTIN_CPP)
29         ar r $@ $^
30