You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
549 B
31 lines
549 B
###############################################################################
|
|
# vlc (VideoLAN Client) ALSA module Makefile
|
|
# (c)2001 VideoLAN
|
|
###############################################################################
|
|
|
|
#
|
|
# Objects
|
|
#
|
|
|
|
PLUGIN_C = alsa.o aout_alsa.o
|
|
BUILTIN_C = $(PLUGIN_C:%.o=BUILTIN_%.o)
|
|
|
|
ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)
|
|
|
|
#
|
|
# Virtual targets
|
|
#
|
|
|
|
include ../../Makefile.modules
|
|
|
|
#
|
|
# Real targets
|
|
#
|
|
|
|
../alsa.so: $(PLUGIN_C)
|
|
$(CC) $(PCFLAGS) -o $@ $^ $(PLCFLAGS) $(LIB_ALSA)
|
|
|
|
../alsa.a: $(BUILTIN_C)
|
|
ar r $@ $^
|
|
$(RANLIB) $@
|
|
|
|
|