Fixed the various clean targets so that a distclean is only performed on GtkMozilla when explicitly asked for.
This commit is contained in:
cls%seawood.org 1999-10-09 02:41:01 +00:00
Родитель 19d2005552
Коммит 46f425db3f
1 изменённых файлов: 4 добавлений и 1 удалений

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

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