diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-02 21:30:58 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-02 21:30:58 +0000 |
commit | 3e14161fd0a8f0b6fb6ec98bc5ded4370e61f048 (patch) | |
tree | 7215b6cd3333076eb87934498ebdc59671a28e88 /Makefile | |
parent | 68815423f7e6ebd3c1a84356f6c8a830a59f366c (diff) | |
download | vdr-plugin-live-3e14161fd0a8f0b6fb6ec98bc5ded4370e61f048.tar.gz vdr-plugin-live-3e14161fd0a8f0b6fb6ec98bc5ded4370e61f048.tar.bz2 |
- silenced make clean in httpd subdir
- now removing .cpp files generated from .ecpp when cleaning
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.5 2007/01/02 21:08:00 lordjaxom Exp $ +# $Id: Makefile,v 1.6 2007/01/02 21:30:58 lordjaxom Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -117,7 +117,7 @@ dist: clean $(WEBS:%.o=%.cpp) @echo Distribution package created as $(PACKAGE).tgz clean: - @-rm -f $(OBJS) $(WEBS) $(DEPFILE) *.so *.tgz core* *~ + @-rm -f $(OBJS) $(WEBS) $(WEBS:%.o=%.cpp) $(DEPFILE) *.so *.tgz core* *~ @for dir in $(SUBDIRS); do \ make -C $$dir clean ; \ done |