Fix for the problem of GtkMozilla not being properly cleaned up from client.mk's cleansrcdir target.

This commit is contained in:
cls%seawood.org 1999-09-22 00:40:11 +00:00
Родитель 75daffe520
Коммит 5843ef4e5c
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -288,6 +288,9 @@ cleansrcdir:
if [ -f Makefile ]; then \
$(MAKE) realclean && _skip_find=1; \
fi; \
if [ -f webshell/embed/gtk/Makefile ]; then \
$(MAKE) -C webshell/embed/gtk distclean; \
fi \
if [ ! "$$_skip_find" ]; then \
echo "Removing object files from srcdir..."; \
rm -fr `find . -type d \( -name .deps -print -o -name CVS \

Просмотреть файл

@ -37,7 +37,7 @@ libs::
install::
@cd gtk && $(MAKE) install && cd ..
clean clobber distclean::
clean clobber realclean distclean::
@cd gtk && $(MAKE) distclean && cd ..
endif