• 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 593 Bytes
###############################################################################
# vlc (VideoLAN Client) esd module Makefile
# (c)2001 VideoLAN
###############################################################################

#
# Objects
#

PLUGIN_C = esd.o aout_esd.o
BUILTIN_C = $(PLUGIN_C:%.o=BUILTIN_%.o)

ALL_OBJ = $(PLUGIN_C) $(BUILTIN_C)

#
# Special plugin modifications
#

CFLAGS += $(CFLAGS_ESD)

#
# Virtual targets
#

include ../../Makefile.modules

#
# Real targets
#

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

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