]> git.sesse.net Git - vlc/blob - plugins/arts/Makefile
* Removed unused code (intf_channels.c, keystrokes.h).
[vlc] / plugins / arts / Makefile
1 ###############################################################################
2 # vlc (VideoLAN Client) arts module Makefile
3 # (c)2001 VideoLAN
4 ###############################################################################
5
6 #
7 # Objects
8 #
9
10 PLUGIN_C = arts.o aout_arts.o
11 BUILTIN_C = $(PLUGIN_C:%.o=BUILTIN_%.o)
12
13 ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)
14
15 #
16 # Special plugin modifications
17 #
18
19 CFLAGS += $(CFLAGS_ARTS)
20
21 #
22 # Virtual targets
23 #
24
25 include ../../Makefile.modules
26
27 #
28 # Real targets
29 #
30
31 ../arts.so: $(PLUGIN_C)
32         $(CC) -o $@ $^ $(PLCFLAGS) $(LIB_ARTS)
33
34 ../arts.a: $(BUILTIN_C)
35         ar r $@ $^
36         $(RANLIB) $@
37