]> git.sesse.net Git - vlc/blob - plugins/spu_dec/Makefile
All decoders (audio, video, subtitles) are now modules.
[vlc] / plugins / spu_dec / Makefile
1 ###############################################################################
2 # vlc (VideoLAN Client) MPEG audio decoder module makefile
3 # (c)2001 VideoLAN
4 ###############################################################################
5
6 #
7 # Objects
8 #
9 PLUGIN_C = spu_decoder.o
10 BUILTIN_C = $(PLUGIN_C:%.o=BUILTIN_%.o)
11
12 ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)
13 #
14 # Virtual targets
15 #
16
17 include ../../Makefile.modules
18
19 #
20 # Real targets
21 #
22
23 ../spu_dec.so: $(PLUGIN_C)
24         $(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) 
25
26 ../spu_dec.a: $(BUILTIN_C)
27         ar r $@ $^
28         $(RANLIB) $@
29