]> git.sesse.net Git - vlc/blob - plugins/mga/Makefile
* Mandatory step for video output IV and the audio output quality
[vlc] / plugins / mga / Makefile
1 ###############################################################################
2 # vlc (VideoLAN Client) mga module Makefile
3 # (c)2001 VideoLAN
4 ###############################################################################
5
6 #
7 # Objects
8 #
9
10 PLUGIN_C = mga.o vout_mga.o
11 BUILTIN_C = $(PLUGIN_C:%.o=BUILTIN_%.o)
12
13 ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)
14
15 #
16 # Virtual targets
17 #
18
19 include ../../Makefile.modules
20
21 #
22 # Real targets
23 #
24
25 ../../lib/mga.so: $(PLUGIN_C)
26         $(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) 
27
28 ../../lib/mga.a: $(BUILTIN_C)
29         ar r $@ $^
30         $(RANLIB) $@
31