]> git.sesse.net Git - vlc/blob - plugins/ac3_spdif/Makefile
* Removed unused code (intf_channels.c, keystrokes.h).
[vlc] / plugins / ac3_spdif / Makefile
1 ###############################################################################
2 # vlc (VideoLAN Client) AC3 spdif audio decoder module makefile
3 # (c)2001 VideoLAN
4 ###############################################################################
5
6 #
7 # Objects
8 #
9 PLUGIN_C = ac3_spdif.o ac3_iec958.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 ../ac3_spdif.so: $(PLUGIN_C)
24         $(CC) -o $@ $^ $(PLCFLAGS) 
25
26 ../ac3_spdif.a: $(BUILTIN_C)
27         ar r $@ $^
28         $(RANLIB) $@
29