]> git.sesse.net Git - vlc/blob - Makefile.modules.in
* Added .cvsignore files in the plugins directories.
[vlc] / Makefile.modules.in
1 ###############################################################################
2 # vlc (VideoLAN Client) plugins Makefile
3 # (c)1998 VideoLAN
4 ###############################################################################
5
6 #
7 # C headers directories
8 #
9 CFLAGS += -I../../include -I../../extras
10
11 #
12 # C compiler flags: plugin compilation
13 #
14 PCFLAGS += -fPIC
15
16 #
17 # C compiler flags: plugin linking
18 #
19 ifneq (,$(findstring darwin,$(SYS)))
20 PLCFLAGS += -bundle -undefined suppress
21 else
22 ifeq ($(SYS),beos)
23 PLCFLAGS += -nostart ../../lib/_APP_
24 else
25 PLCFLAGS += -shared
26 endif
27 endif
28