diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-03 16:13:24 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-01-03 16:13:24 +0000 |
commit | 391853ccdcf13bf817fb4ade9e6ed8f959f1ca57 (patch) | |
tree | d7018340faa1ecd11f6194e12a5599edfb30dfd6 /Makefile | |
parent | 9903d559f0f7b1bad0946e5791a457ffe33a0df5 (diff) | |
download | vdr-plugin-live-391853ccdcf13bf817fb4ade9e6ed8f959f1ca57.tar.gz vdr-plugin-live-391853ccdcf13bf817fb4ade9e6ed8f959f1ca57.tar.bz2 |
fixed clean target in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.9 2007/01/03 16:03:30 lordjaxom Exp $ +# $Id: Makefile,v 1.10 2007/01/03 16:13:24 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -118,7 +118,7 @@ dist: clean $(WEBSITE:%.o=%.cpp) @echo Distribution package created as $(PACKAGE).tgz clean: - @-rm -f $(PLUGINOBJS) $(WEBOBJS) $(WEBSITE) $(WEBDATA:%.o=%.cpp) $(DEPFILE) *.so *.tgz core* *~ + @-rm -f $(PLUGINOBJS) $(WEBOBJS) $(WEBSITE) $(WEBSITE:%.o=%.cpp) $(DEPFILE) *.so *.tgz core* *~ @for dir in $(SUBDIRS); do \ make -C $$dir clean ; \ done |