diff options
| author | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-29 16:37:13 +0000 | 
|---|---|---|
| committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2003-09-29 16:37:13 +0000 | 
| commit | 44f4bc70f7e259d482215ec8eff0f9acc3a297af (patch) | |
| tree | cb2bbce6c5410ff8caf0b5e59b09498cce9e49a0 | |
| parent | distclean (diff) | |
| download | w3m-44f4bc70f7e259d482215ec8eff0f9acc3a297af.tar.gz w3m-44f4bc70f7e259d482215ec8eff0f9acc3a297af.zip | |
distclean
Diffstat (limited to '')
| -rw-r--r-- | Makefile.in | 2 | ||||
| -rw-r--r-- | w3mimg/Makefile.in | 6 | ||||
| -rw-r--r-- | w3mimg/fb/Makefile.in | 3 | ||||
| -rw-r--r-- | w3mimg/x11/Makefile.in | 3 | 
4 files changed, 13 insertions, 1 deletions
| diff --git a/Makefile.in b/Makefile.in index f9a0af6..8fc6f39 100644 --- a/Makefile.in +++ b/Makefile.in @@ -280,7 +280,7 @@ clean: sweep  	done  distclean: clean -	for subdir in po scripts; \ +	for subdir in po scripts w3mimg; \  	do \  		(cd $$subdir && $(MAKE) distclean); \  	done diff --git a/w3mimg/Makefile.in b/w3mimg/Makefile.in index 5699e82..4fc6286 100644 --- a/w3mimg/Makefile.in +++ b/w3mimg/Makefile.in @@ -26,6 +26,12 @@ clean:  	 done  distclean: clean +	for subdir in fb x11; \ +	do \ +		(cd $$subdir && $(MAKE) distclean); \ +	done +	-$(RM) -f Makefile +  	-$(RM) -f Makefile  # diff --git a/w3mimg/fb/Makefile.in b/w3mimg/fb/Makefile.in index 82d7915..be74aab 100644 --- a/w3mimg/fb/Makefile.in +++ b/w3mimg/fb/Makefile.in @@ -26,6 +26,9 @@ fb_img.o: fb_img.c fb_gdkpixbuf.c fb_imlib2.c  clean:  	@-$(RM) -f *.o +distclean: clean +	-$(RM) -f Makefile +  # diff --git a/w3mimg/x11/Makefile.in b/w3mimg/x11/Makefile.in index 894c7d8..79bb786 100644 --- a/w3mimg/x11/Makefile.in +++ b/w3mimg/x11/Makefile.in @@ -20,6 +20,9 @@ x11_w3mimg.o: x11_w3mimg.c  clean:  	@-$(RM) -f *.o +distclean: clean +	-$(RM) -f Makefile +  # | 
