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