diff options
author | phintuka <phintuka> | 2014-06-17 11:22:15 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2014-06-17 11:22:15 +0000 |
commit | 8dfe3f5bde08175416cca5501ad8a466d0780a79 (patch) | |
tree | 1e34014fc3dbd8e5254a5e440dfae10df5af699d | |
parent | 157723acfab2b9f49dc176f3a72af3d6d476d0a5 (diff) | |
download | xineliboutput-8dfe3f5bde08175416cca5501ad8a466d0780a79.tar.gz xineliboutput-8dfe3f5bde08175416cca5501ad8a466d0780a79.tar.bz2 |
Fix "gcc: fatal error: no input files" with some configurations.
(patch #21, Thanks to Helmut Auer)
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 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.118 2014-01-14 08:21:33 phintuka Exp $ +# $Id: Makefile,v 1.119 2014-06-17 11:22:15 phintuka Exp $ # # The official name of this plugin. @@ -274,7 +274,7 @@ vdrlogo_720x576.c: mpg2c vdrlogo_720x576.mpg @./mpg2c vdrlogo vdrlogo_720x576.mpg vdrlogo_720x576.c # C code (xine plugins and frontends) -$(sort $(OBJS_SXFE) $(OBJS_FBFE) $(OBJS_XINE)): +$(sort $(OBJS_SXFE) $(OBJS_FBFE) $(OBJS_XINE)): %.o: %.c $(CC) $(CFLAGS) -c $(DEFINES) $(INCLUDES) $(CFLAGS_X11) $(CFLAGS_AVUTIL) $(OPTFLAGS) -o $@ $< ### Internationalization (I18N): |