代码搜索:recursive
找到约 2,177 项符合「recursive」的源代码
代码结果 2,177
www.eeworm.com/read/339324/12242774
rules make.rules
%-recursive:
ifneq ($(SUBDIRS),)
for d in $(SUBDIRS) ; do $(MAKE) -C $$d $* ; done
else
@:
endif
GARBAGE = *~ \#*\#
clean: clean-recursive
clean: clean-garbage
clean: clean-local
clean-garbage:
$
www.eeworm.com/read/124347/6053548
c mutex6r.c
/*
* mutex6r.c
*
* Tests PTHREAD_MUTEX_RECURSIVE mutex type.
* Thread locks mutex twice (recursive lock).
* Both locks and unlocks should succeed.
*
* Depends on API functions:
* pthrea
www.eeworm.com/read/154760/11929051
m dtsim.m
function [yt,yzs,yzi] = dtsim(b,a,u,ic)
% DTSIM Recursive solution of difference equation.
%
% [YT,YZS,YZI]= DTSIM(B,A,U,IC) Recursive solution of difference eqs
% B, A contain the coefficient arrays
www.eeworm.com/read/324136/3505801
in makefile.in
#
# Makefile for the common code library project.
# This probably requires GNU make.
#
SUBDIRS=rtp
all: all-recursive
all-recursive:
for s in $(SUBDIRS) ; do (cd $$s && $(MAKE)) || exit 1; done
www.eeworm.com/read/247565/12641891
makefile
# procps Makefile
# Albert Cahalan, 2002-2004
#
# Recursive make is considered harmful:
# http://google.com/search?q=%22recursive+make+considered+harmful%22
#
# For now this Makefile uses explicit dep
www.eeworm.com/read/247565/12642149
bak makefile.bak
# procps Makefile
# Albert Cahalan, 2002-2004
#
# Recursive make is considered harmful:
# http://google.com/search?q=%22recursive+make+considered+harmful%22
#
# For now this Makefile uses explicit dep
www.eeworm.com/read/108859/15573939
m dtsim.m
function [yt,yzs,yzi] = dtsim(b,a,u,ic)
% DTSIM Recursive solution of difference equation.
%
% [YT,YZS,YZI]= DTSIM(B,A,U,IC) Recursive solution of difference eqs
% B, A contain the coefficient arrays