diff options
author | RaK <RaK@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-02-09 22:07:44 +0000 |
---|---|---|
committer | RaK <RaK@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-02-09 22:07:44 +0000 |
commit | 2199ade24657fd2601c371236084103ca62a99cc (patch) | |
tree | a2adb766af1fea7eb3efd97023347f92ee255c0f /muggle-plugin/Makefile | |
parent | d62ff70e806d5992436b1abc04fd479e5623a1fa (diff) | |
download | vdr-plugin-muggle-2199ade24657fd2601c371236084103ca62a99cc.tar.gz vdr-plugin-muggle-2199ade24657fd2601c371236084103ca62a99cc.tar.bz2 |
secound filter set (album search incl. special view #101
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk@32 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'muggle-plugin/Makefile')
-rw-r--r-- | muggle-plugin/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/muggle-plugin/Makefile b/muggle-plugin/Makefile index d913ff7..af19f23 100644 --- a/muggle-plugin/Makefile +++ b/muggle-plugin/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.5 2004/02/09 19:27:52 MountainMan Exp $ +# $Id: Makefile,v 1.6 2004/02/09 22:07:44 RaK Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -51,10 +51,9 @@ OBJS = $(PLUGIN).o vdr_menu.o mg_database.o mg_content_interface.o gd_content_in BINOBJS = mg_database.o mg_content_interface.o gd_content_interface.o mg_tools.o mg_media.o #BINOBJS = sh_console_osd.o muggle.o vdr_menu.o content_interface.o gd_content_interface.o muggle_tools.o mgmedia.o -### Implicit rules: +### Targets: -%.o: %.c - $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< +all: libvdr-$(PLUGIN).so # Dependencies: @@ -65,9 +64,10 @@ $(DEPFILE): Makefile -include $(DEPFILE) -### Targets: +### Implicit rules: -all: libvdr-$(PLUGIN).so +%.o: %.c %.h + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< libvdr-$(PLUGIN).so: $(OBJS) $(CXX) $(CXXFLAGS) -shared $(OBJS) -lmysqlclient -o $@ |