• Sam Hocevar's avatar
    · 003c2ab3
    Sam Hocevar authored
      * Removed unused code (intf_channels.c, keystrokes.h).
      * Put common_win32.h back into common.h -- it wasn't that big and we
        should not multiply header files.
      * Added gettext support by Thomas Graf <reeler@reeler.org>, may be
        broken on other platforms but we'll only see it when I'm finished
        with vout 4 :-)
      * Fixed a segfault on exit when no fast_memcpy module was found.
    003c2ab3
Makefile 560 Bytes
###############################################################################
# vlc (VideoLAN Client) AC3 spdif audio decoder module makefile
# (c)2001 VideoLAN
###############################################################################

#
# Objects
#
PLUGIN_C = ac3_spdif.o ac3_iec958.o
BUILTIN_C = $(PLUGIN_C:%.o=BUILTIN_%.o)

ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)
#
# Virtual targets
#

include ../../Makefile.modules

#
# Real targets
#

../ac3_spdif.so: $(PLUGIN_C)
	$(CC) -o $@ $^ $(PLCFLAGS) 

../ac3_spdif.a: $(BUILTIN_C)
	ar r $@ $^
	$(RANLIB) $@