diff options
author | phintuka <phintuka> | 2008-11-15 21:17:02 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-11-15 21:17:02 +0000 |
commit | a492d521dab3b033b27e10560ea9b4c266844252 (patch) | |
tree | 63b01ff00d74b854df7597fd67ba33cc71704382 | |
parent | 3ebda9b06a6a17a96e4016c4e2c1c7889b4359f7 (diff) | |
download | xineliboutput-a492d521dab3b033b27e10560ea9b4c266844252.tar.gz xineliboutput-a492d521dab3b033b27e10560ea9b4c266844252.tar.bz2 |
Generate dependencies for xine plugin source files
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -4,7 +4,7 @@ # See the main source file 'xineliboutput.c' for copyright information and # how to reach the author. # -# $Id: Makefile,v 1.63 2008-11-15 13:25:39 phintuka Exp $ +# $Id: Makefile,v 1.64 2008-11-15 21:17:02 phintuka Exp $ # # The official name of this plugin. @@ -245,6 +245,7 @@ else OBJS_FBFE = endif +OBJS_XINE = xine_input_vdr.o xine_post_autocrop.o xine_post_swscale.o xine_post_audiochannel.o ### ### Implicit rules: @@ -261,7 +262,9 @@ endif MAKEDEP = g++ -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile - @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) $(OBJS_SXFE:%.o=%.c) $(OBJS_FBFE:%.o=%.c) > $@ + @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) \ + $(OBJS_SXFE:%.o=%.c) $(OBJS_FBFE:%.o=%.c) \ + $(OBJS_XINE:%.o=%.c) > $@ -include $(DEPFILE) |