* BeOS fixes. renamed iovec.h to input_iovec.h because of namespace issues.
[vlc.git] / plugins / beos / Makefile
blob654c8d5cca4ff9da003bbdab20efc30da8ec5af1
1 ###############################################################################
2 # vlc (VideoLAN Client) BeOS module Makefile
3 # (c)2001 VideoLAN
4 ###############################################################################
7 # Objects
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)
13 ALL_OBJ = $(PLUGIN_CPP) $(BUILTIN_CPP)
16 # Virtual targets
19 include ../../Makefile.modules
22 # Real targets
25 ../../lib/beos.so: $(PLUGIN_CPP)
26 $(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) $(LIB_BEOS)
28 ../../lib/beos.a: $(BUILTIN_CPP)
29 ar r $@ $^
30 $(RANLIB) $@