代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/120201/6080110
mak unzip.mak
.AUTODEPEND
# *Translator Definitions*
CC = bcc +UNZIP.CFG
TASM = TASM
TLINK = tlink
# *Implicit Rules*
.c.obj:
$(CC) -c {$< }
.cpp.obj:
$(CC) -c {$< }
# *List Macros*
EXE_dependencies =
www.eeworm.com/read/120201/6080111
mak zipinfo.mak
.AUTODEPEND
# *Translator Definitions*
CC = bcc +ZIPINFO.CFG
TASM = TASM
TLINK = tlink
# *Implicit Rules*
.c.obj:
$(CC) -c {$< }
.cpp.obj:
$(CC) -c {$< }
# *List Macros*
EXE_dependencies
www.eeworm.com/read/110301/6165183
mak unzip.mak
.AUTODEPEND
# *Translator Definitions*
CC = bcc +UNZIP.CFG
TASM = TASM
TLINK = tlink
# *Implicit Rules*
.c.obj:
$(CC) -c {$< }
.cpp.obj:
$(CC) -c {$< }
# *List Macros*
EXE_dependencies =
www.eeworm.com/read/110301/6165184
mak zipinfo.mak
.AUTODEPEND
# *Translator Definitions*
CC = bcc +ZIPINFO.CFG
TASM = TASM
TLINK = tlink
# *Implicit Rules*
.c.obj:
$(CC) -c {$< }
.cpp.obj:
$(CC) -c {$< }
# *List Macros*
EXE_dependencies
www.eeworm.com/read/100926/6264497
install-sh
#! /bin/sh
#
# install - install a program, script, or datafile
# This comes from X11R5.
#
# Calling this script install-sh is preferred over install.sh, to prevent
# `make' implicit rules from
www.eeworm.com/read/360546/6352179
f90 stack.f90
module STACK_UTILITY
implicit none
private
integer, parameter :: TOP=50
integer, save :: current = 0
integer, save :: stack(TOP)
public push, pop
contains
! 把数据放入堆栈中
subrout
www.eeworm.com/read/360546/6352182
f90 knight.f90
module STACK_UTILITY
implicit none
private
integer, parameter :: TOP=50
integer, save :: current = 0
integer, save :: stack(TOP)
public push, pop
contains
! 把数据放入堆栈中
subrout
www.eeworm.com/read/486304/6539202
f90 intrabend.f90
subroutine IntraBend( X, Y, Z, kbend, theta_eq, Uintra )
implicit none
! X, Y, Z contain the coordinates of the existing beads.
real, dimension(3), intent(in) :: X, Y, Z
! kbend is t
www.eeworm.com/read/476406/6760744
f90 stack.f90
module STACK_UTILITY
implicit none
private
integer, parameter :: TOP=50
integer, save :: current = 0
integer, save :: stack(TOP)
public push, pop
contains
! 把数据放入堆栈中
subrout
www.eeworm.com/read/476406/6760747
f90 knight.f90
module STACK_UTILITY
implicit none
private
integer, parameter :: TOP=50
integer, save :: current = 0
integer, save :: stack(TOP)
public push, pop
contains
! 把数据放入堆栈中
subrout