/
trilirium
/
Kaffe
Обзор
Документация
Войти
/
trilirium
/
Kaffe
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
include/distclean-hack
19 строк
642 B
Trilirium
Kaffe
10 авг 2026, 17:27
10 авг 2026, 17:27
7c3956b
Код
Авторство
О чём код?
# Makefile fragment to distclean DIST_SUBDIRS not in SUBDIRS # # Copyright (c) 1999 # Transvirtual Technologies, Inc. All rights reserved. # # See the file "license.terms" for information on usage and redistribution # of this file. DISTCLEAN_LOCAL = distclean-local distclean-generic: $(DISTCLEAN_LOCAL) distclean-local: @dirs='$(DIST_SUBDIRS)'; xdirs='$(SUBDIRS)'; subdirs=; \ for dir in $$dirs; do \ for xdir in $$xdirs; do \ test "$$dir" = "$$xdir" && continue 2; \ done; subdirs="$$subdirs $$dir"; \ done; \ $(MAKE) AM_MAKEFLAGS="DISTCLEAN_LOCAL=ignore-this-failure" \ SUBDIRS=". $$subdirs" distclean-recursive || :