代码搜索:Making

找到约 2,505 项符合「Making」的源代码

代码结果 2,505
www.eeworm.com/read/299965/7816569

cpp vec_clone.cpp

#include "Vec.h" template T* clone(const T* tp); // the key to making `Ptr< Vec >' work template Vec* clone(const Vec* vp) { return new Vec(*vp); }
www.eeworm.com/read/299965/7817093

cpp vec_clone.cpp

#include "Vec.h" template T* clone(const T* tp); // the key to making `Ptr< Vec >' work template Vec* clone(const Vec* vp) { return new Vec(*vp); }
www.eeworm.com/read/299965/7817491

cpp vec_clone.cpp

#include "Vec.h" template T* clone(const T* tp); // the key to making `Ptr< Vec >' work template Vec* clone(const Vec* vp) { return new Vec(*vp); }
www.eeworm.com/read/299091/7889481

bat w.bat

@echo off echo Making HEXEN.WAD echo Preprocessing: wadlink.txt to wadlink.wl wcc386 /dNOMAPS /dREGISTERED /p /fo=wadlink.wl \data\wadlink.txt echo wadlinking ... \tools\exe\wadlink
www.eeworm.com/read/331910/12801744

am makefile.am

# This file does not do anything, except making sure these files are included # when you run 'make dist'. EXTRA_DIST = libtool.m4
www.eeworm.com/read/139382/13159160

cpp vec_clone.cpp

#include "Vec.h" template T* clone(const T* tp); // the key to making `Ptr< Vec >' work template Vec* clone(const Vec* vp) { return new Vec(*vp); }
www.eeworm.com/read/138474/5816442

makefile

BUILDDIR=$(shell pwd) TOP=../.. PLATFORM=solaris UNAME=$(shell uname -a) ifneq (,$(findstring SunOS,$(UNAME))) export PLATFORM=solaris endif SUBDIRS = \ $(TOP)/tools/preverifier/build/solaris \
www.eeworm.com/read/138474/5816443

makefile

BUILDDIR=$(shell pwd) TOP=../.. PLATFORM=win32 export PLATFORM SUBDIRS = \ $(TOP)/tools/preverifier/build/win32 \ $(TOP)/api \ ifeq ($(DEBUG), true) SUBDIRS += $(TOP)/tools/kdp endif ifn
www.eeworm.com/read/138474/5816445

makefile

BUILDDIR=$(shell pwd) TOP=../.. PLATFORM=linux export LANG=C UNAME=$(shell uname -a) ifneq (,$(findstring Linux,$(UNAME))) export PLATFORM=linux endif SUBDIRS = \ $(TOP)/tools/preverifier/build/
www.eeworm.com/read/131315/5940383

makefile

CC=gcc -g -O history: history.c $(CC) -o history history.c @echo 'Now install "history" as -, --, -p and --p in your bin directory' @echo '(for example, by making them links to the same file)'