############################################################################### # vlc (VideoLAN Client) plugins Makefile # (c)1998 VideoLAN ############################################################################### # # C headers directories # CFLAGS += -I../../include -I../../extras # # C compiler flags: plugin compilation # PCFLAGS += -fPIC # # C compiler flags: plugin linking # ifneq (,$(findstring darwin,$(SYS))) PLCFLAGS += -bundle -undefined suppress else ifeq ($(SYS),beos) PLCFLAGS += -nostart ../../lib/_APP_ else PLCFLAGS += -shared endif endif