~ubuntu-branches/debian/wheezy/vlc/wheezy

« back to all changes in this revision

Viewing changes to plugins/mga/Makefile

Tags: upstream-0.7.2.final
ImportĀ upstreamĀ versionĀ 0.7.2.final

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
../mga.so: $(PLUGIN_C)
26
 
        $(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) 
27
 
 
28
 
../mga.a: $(BUILTIN_C)
29
 
        ar r $@ $^
30
 
        $(RANLIB) $@
31