diff options
Diffstat (limited to 'dmake/winnt/microsft')
-rw-r--r-- | dmake/winnt/microsft/config.h | 85 | ||||
-rw-r--r-- | dmake/winnt/microsft/config.mk | 61 | ||||
-rw-r--r-- | dmake/winnt/microsft/optoff.h | 27 | ||||
-rw-r--r-- | dmake/winnt/microsft/ruletab.c | 45 | ||||
-rw-r--r-- | dmake/winnt/microsft/sysintf.h | 57 | ||||
-rw-r--r-- | dmake/winnt/microsft/tempnam.c | 110 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/config.mk | 14 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/lib.rsp | 1 | ||||
-rwxr-xr-x | dmake/winnt/microsft/vpp40/mk.bat | 32 | ||||
-rwxr-xr-x | dmake/winnt/microsft/vpp40/mk.cmd | 31 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/obj.rsp | 28 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/public.h | 167 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/runargv.c | 285 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/template.mk | 7 | ||||
-rw-r--r-- | dmake/winnt/microsft/vpp40/tempnam.c | 110 |
15 files changed, 0 insertions, 1060 deletions
diff --git a/dmake/winnt/microsft/config.h b/dmake/winnt/microsft/config.h deleted file mode 100644 index 32d59716185a..000000000000 --- a/dmake/winnt/microsft/config.h +++ /dev/null @@ -1,85 +0,0 @@ -/* RCS $Id: config.h,v 1.9 2008-03-05 18:41:51 kz Exp $ --- --- SYNOPSIS --- Configurarion include file. --- --- DESCRIPTION --- There is one of these for each specific machine configuration. --- It can be used to further tweek the machine specific sources --- so that they compile. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -/* Name and version number of this package */ -#define PACKAGE "dmake" -#define VERSION "4.12" -#define BUILDINFO "Windows / MS Visual C++" - -#if defined (_MSC_VER) -# if _MSC_VER < 500 - Force a compile-time blowup. - Do not define "#define _MSC_VER" for MSC compilers earlier than 5.0. -# endif -#endif - -/* define this for configurations that don't have the coreleft function - * so that the code compiles. To my knowledge coreleft exists only on - * Turbo C, but it is needed here since the function is used in many debug - * macros. */ -#define coreleft() 0L - -/* MSC Version 4.0 doesn't understand SIGTERM, later versions do. */ -#ifndef SIGTERM -# define SIGTERM SIGINT -#endif - -/* Fixes unimplemented line buffering for MSC 5.x and 6.0. - * MSC _IOLBF is the same as _IOFBF - */ -#if defined(MSDOS) && defined (_MSC_VER) -# undef _IOLBF -# define _IOLBF _IONBF -#endif - -/* in alloc.h: size_t is redefined - * defined in stdio.h which is included by alloc.h - */ -#if defined(MSDOS) && defined (_MSC_VER) -# define _TYPES_ -#endif - -/* in sysintf.c: SIGQUIT is used, this is not defined in MSC */ -#ifndef SIGQUIT -# define SIGQUIT SIGTERM -#endif - -/* MSC didn't seem to care about CONST in the past */ -#ifndef CONST -# define CONST -#endif - -#ifndef MSDOS -# define MSDOS 1 -#endif - -/* a small problem with pointer to voids on some unix machines needs this */ -#define DMPVOID void * - -/* Use my own tempnam */ -#define tempnam dtempnam - diff --git a/dmake/winnt/microsft/config.mk b/dmake/winnt/microsft/config.mk deleted file mode 100644 index 352eed716d2f..000000000000 --- a/dmake/winnt/microsft/config.mk +++ /dev/null @@ -1,61 +0,0 @@ -# This is the MSC 4.0 and higher DOS configuration file for DMAKE -# It simply modifies the values of SRC, and checks to see if -# OSENVIRONMENT is defined. If so it includes the appropriate -# config.mk file. -# -# It also sets the values of .SOURCE.c and .SOURCE.h to include the local -# directory. -# -osrdir := $(OS)$(DIRSEPSTR)$(OSRELEASE) - -TMPDIR := -.EXPORT : TMPDIR - -# Definition of macros for library, and C startup code. - -# The following sources are required for MSC -OSR_SRC += tempnam.c ruletab.c -DOS_SRC += runargv.c rmprq.c - -.SETDIR=$(osrdir) : $(OSR_SRC) -.SETDIR=msdos : $(DOS_SRC) - -SRC += $(OSR_SRC) $(DOS_SRC) -.SOURCE.h : $(osrdir) - -SET_STACK = /stack:4096 -ASFLAGS += -t -mx $(S_$(MODEL)) - -# Microsoft C doesn't need tail but needs head -LDTAIL != -LDHEAD != $(LDFLAGS) -LDARGS != $(LDHEAD) -out:$(TARGET) @$(LDTMPOBJ) $(LDTAIL) -LDTAIL != $(_libs) -_libs != $(!null,$(LDLIBS) ,@$(LDTMPLIB)) -LDTMPOBJ != $(mktmp,,$(DIVFILE) $(LDOBJS:s,/,\\,:t"\n")\n) -LDTMPLIB != $(mktmp,,$(DIVFILE) $(LDLIBS:s,/,\\,:t"\n")\n) - -# Debugging libraries and flags -DB_LDFLAGS += /nologo /co /li /map -DB_LDLIBS += -DB_CFLAGS += -Zi - -# NO Debug MSC flags: -# Set the environment variable MSC_VER to be one of 5.1, 6.0, 8.0 (for VC++4.0) -# to get these by default when you make dmake using 'dmake'. -# - -NDB_LDFLAGS += /nologo -CFLAGS += -I$(osrdir) - -# See if we modify anything in the lower levels. -.IF $(OSENVIRONMENT) != $(NULL) - .INCLUDE .IGNORE : $(osrdir)$(DIRSEPSTR)$(OSENVIRONMENT)$(DIRSEPSTR)config.mk -.END - -CFLAGS += /nologo - -S_s = -Dmsmall -S_m = -Dmmedium -S_c = -Dmcompact -S_l = -Dmlarge diff --git a/dmake/winnt/microsft/optoff.h b/dmake/winnt/microsft/optoff.h deleted file mode 100644 index 7dd3cb839572..000000000000 --- a/dmake/winnt/microsft/optoff.h +++ /dev/null @@ -1,27 +0,0 @@ -/* RCS $Id: optoff.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $ --- --- SYNOPSIS --- Turn off microsoft loop optimization. --- --- DESCRIPTION --- This is broken in some pre 600 compilers so just turn it off. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ -#if _MSC_VER < 600 -# pragma loop_opt(off) -#endif diff --git a/dmake/winnt/microsft/ruletab.c b/dmake/winnt/microsft/ruletab.c deleted file mode 100644 index ed7686f7b5e0..000000000000 --- a/dmake/winnt/microsft/ruletab.c +++ /dev/null @@ -1,45 +0,0 @@ -/* RCS $Id: ruletab.c,v 1.3 2006-06-29 11:33:07 ihi Exp $ --- --- SYNOPSIS --- Default initial configuration of dmake. --- --- DESCRIPTION --- Define here the initial set of rules that are defined before --- dmake performs any processing. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -/* These are control macros for dmake that MUST be defined at some point - * if they are NOT dmake will not work! These are default definitions. They - * may be overridden inside the .STARTUP makefile, they are here - * strictly so that dmake can parse the STARTUP makefile */ - -#include <stdio.h> - -static char *_rules[] = { - "MAXLINELENGTH := 32766", - "MAXPROCESSLIMIT := 4", - "MAXPROCESS := 1", - ".IMPORT .IGNORE: DMAKEROOT" - ".MAKEFILES : makefile.mk makefile", - ".SOURCE : .NULL", -#include "startup.h" - (char *)NULL }; - -char **Rule_tab = _rules; /* for sundry reasons in Get_environment() */ - diff --git a/dmake/winnt/microsft/sysintf.h b/dmake/winnt/microsft/sysintf.h deleted file mode 100644 index 010280bb802b..000000000000 --- a/dmake/winnt/microsft/sysintf.h +++ /dev/null @@ -1,57 +0,0 @@ -/* RCS $Id: sysintf.h,v 1.3 2007-01-18 09:52:02 vg Exp $ --- --- SYNOPSIS --- Interfaces for sysintf.c --- --- DESCRIPTION --- Abstractions of functions in sysintf.c --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -#define DMSTAT stat -#define VOID_LCACHE(l,m) -#define GETPID _psp -#define Hook_std_writes(A) - -extern char * tempnam(); -extern char * getcwd(); - -/* for directory cache */ -#define CacheStat(A,B) really_dostat(A,&buf) - -/* -** standard C items -*/ - -/* -** DOS interface standard items -*/ -#define chdir(p) dchdir(p) - -/* -** make parameters -*/ -#ifdef _POSIX_NAME_MAX -#undef _POSIX_NAME_MAX -#endif -#define _POSIX_NAME_MAX _MAX_FNAME - -#ifdef _POSIX_PATH_MAX -#undef _POSIX_PATH_MAX -#endif -#define _POSIX_PATH_MAX _MAX_PATH diff --git a/dmake/winnt/microsft/tempnam.c b/dmake/winnt/microsft/tempnam.c deleted file mode 100644 index c3a8fa140f29..000000000000 --- a/dmake/winnt/microsft/tempnam.c +++ /dev/null @@ -1,110 +0,0 @@ -/* RCS $Id: tempnam.c,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $ --- --- SYNOPSIS --- tempnam --- --- DESCRIPTION --- temp file name generation routines. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -/*LINTLIBRARY*/ -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <process.h> - -#if defined(max) -# undef max -#endif -#define max(A,B) (((A)<(B))?(B):(A)) - -extern char *mktemp(); -extern int access(); -int d_access(); - -/* MSC stdio.h defines P_tmpdir, so let's undo it here */ -/* Under DOS leave the default tmpdir pointing here! */ -#ifdef P_tmpdir -#undef P_tmpdir -#endif -static char *P_tmpdir = ""; - -char * -dtempnam(dir, prefix) -char *dir; /* use this directory please (if non-NULL) */ -char *prefix; /* use this (if non-NULL) as filename prefix */ -{ - static int count = 0; - register char *p, *q, *tmpdir; - int tl=0, dl=0, pl; - char buf[30]; - - pl = strlen(P_tmpdir); - - if( (tmpdir = getenv("TMPDIR")) != NULL ) tl = strlen(tmpdir); - else if( (tmpdir = getenv("TMP")) != NULL ) tl = strlen(tmpdir); - if( dir != NULL ) dl = strlen(dir); - - if( (p = malloc((unsigned)(max(max(dl,tl),pl)+13))) == NULL ) - return(NULL); - - *p = '\0'; - - if( (tl == 0) || (d_access( strcpy(p, tmpdir), 0) != 0) ) - if( (dl == 0) || (d_access( strcpy(p, dir), 0) != 0) ) - if( d_access( strcpy(p, P_tmpdir), 0) != 0 ) - if( !prefix ) - prefix = "tp"; - - if(prefix) - { - *(p+strlen(p)+2) = '\0'; - (void)strncat(p, prefix, 2); - } - - sprintf( buf, "%08x", getpid() ); - buf[6]='\0'; - (void)strcat(p, buf ); - sprintf( buf, "%04d", count++ ); - q=p+strlen(p)-6; - *q++ = buf[0]; *q++ = buf[1]; - *q++ = buf[2]; *q++ = buf[3]; - - if( (q = strrchr(p,'.')) != NULL ) *q = '\0'; - - return(p); -} - - - -d_access( name, flag ) -char *name; -int flag; -{ - extern char *DirSepStr; - char *p; - int r; - - if( name == NULL || !*name ) return(1); /* NULL dir means current dir */ - r = access( name, flag ); - p = name+strlen(name)-1; - if(*p != '/' && *p != '\\') strcat( p, DirSepStr ); - - return( r ); -} diff --git a/dmake/winnt/microsft/vpp40/config.mk b/dmake/winnt/microsft/vpp40/config.mk deleted file mode 100644 index 14fe952eac00..000000000000 --- a/dmake/winnt/microsft/vpp40/config.mk +++ /dev/null @@ -1,14 +0,0 @@ -# Definition of macros for library, and C startup code. -osedir = $(osrdir)$(DIRSEPSTR)$(OSENVIRONMENT) - -.IMPORT .IGNORE : MSC_VER -MSC_VER *= 8.0 - -CFLAGS += -I$(osedir) - -NDB_CFLAGS += -Od -GF -Ge -NDB_LDFLAGS += -NDB_LDLIBS += - -# Redefine rule for making our objects, we don't need mv -%$O : %.c ;% $(CC) -c $(CFLAGS) -Fo$@ $< diff --git a/dmake/winnt/microsft/vpp40/lib.rsp b/dmake/winnt/microsft/vpp40/lib.rsp deleted file mode 100644 index 8b137891791f..000000000000 --- a/dmake/winnt/microsft/vpp40/lib.rsp +++ /dev/null @@ -1 +0,0 @@ - diff --git a/dmake/winnt/microsft/vpp40/mk.bat b/dmake/winnt/microsft/vpp40/mk.bat deleted file mode 100755 index 22917df5eaee..000000000000 --- a/dmake/winnt/microsft/vpp40/mk.bat +++ /dev/null @@ -1,32 +0,0 @@ -md objects -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\infer.obj infer.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\make.obj make.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\stat.obj stat.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\expand.obj expand.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dmstring.obj dmstring.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\hash.obj hash.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dag.obj dag.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dmake.obj dmake.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\path.obj path.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\imacs.obj imacs.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\sysintf.obj sysintf.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\parse.obj parse.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\getinp.obj getinp.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\quit.obj quit.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\state.obj state.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dmdump.obj dmdump.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\macparse.obj macparse.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\rulparse.obj rulparse.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\percent.obj percent.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\function.obj function.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dchdir.obj win95\dchdir.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\switchar.obj win95\switchar.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dstrlwr.obj msdos\dstrlwr.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\arlib.obj msdos\arlib.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\dirbrk.obj msdos\dirbrk.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\tempnam.obj tempnam.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\ruletab.obj win95\microsft\ruletab.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\runargv.obj msdos\runargv.c -cl -c -I. -Iwin95 -Iwin95\microsft -Iwin95\microsft\vpp40 \nologo -Od -GF -Ge -Foobjects\rmprq.obj msdos\rmprq.c -rem link /nologo @win95\microsft\vpp40\obj.rsp,dmake.exe,NUL.MAP; -link /out:dmake.exe @.\win95\microsft\vpp40\obj.rsp diff --git a/dmake/winnt/microsft/vpp40/mk.cmd b/dmake/winnt/microsft/vpp40/mk.cmd deleted file mode 100755 index 5fcc801fae91..000000000000 --- a/dmake/winnt/microsft/vpp40/mk.cmd +++ /dev/null @@ -1,31 +0,0 @@ -md objects -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\infer.obj infer.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\make.obj make.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\stat.obj stat.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\expand.obj expand.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dmstring.obj dmstring.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\hash.obj hash.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dag.obj dag.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dmake.obj dmake.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\path.obj path.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\imacs.obj imacs.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\sysintf.obj sysintf.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\parse.obj parse.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\getinp.obj getinp.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\quit.obj quit.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\state.obj state.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dmdump.obj dmdump.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\macparse.obj macparse.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\rulparse.obj rulparse.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\percent.obj percent.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\function.obj function.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dchdir.obj winnt\dchdir.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dstrlwr.obj msdos\dstrlwr.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\arlib.obj msdos\arlib.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\dirbrk.obj msdos\dirbrk.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\tempnam.obj winnt\microsft\tempnam.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\ruletab.obj winnt\microsft\ruletab.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\runargv.obj msdos\runargv.c -cl -c -I. -Iwinnt -Iwinnt\microsft -Iwinnt\microsft\vpp40 /nologo -Od -GF -Ge -Foobjects\rmprq.obj msdos\rmprq.c -link /nologo /out:dmake.exe @fix95nt\winnt\microsft\vpp40\obj.rsp -copy winnt\microsft\vpp40\template.mk startup\config.mk diff --git a/dmake/winnt/microsft/vpp40/obj.rsp b/dmake/winnt/microsft/vpp40/obj.rsp deleted file mode 100644 index 5c00dab6c29c..000000000000 --- a/dmake/winnt/microsft/vpp40/obj.rsp +++ /dev/null @@ -1,28 +0,0 @@ -objects\infer.obj -objects\make.obj -objects\stat.obj -objects\expand.obj -objects\dmstring.obj -objects\hash.obj -objects\dag.obj -objects\dmake.obj -objects\path.obj -objects\imacs.obj -objects\sysintf.obj -objects\parse.obj -objects\getinp.obj -objects\quit.obj -objects\state.obj -objects\dmdump.obj -objects\macparse.obj -objects\rulparse.obj -objects\percent.obj -objects\function.obj -objects\dchdir.obj -objects\dstrlwr.obj -objects\arlib.obj -objects\dirbrk.obj -objects\tempnam.obj -objects\ruletab.obj -objects\runargv.obj -objects\rmprq.obj diff --git a/dmake/winnt/microsft/vpp40/public.h b/dmake/winnt/microsft/vpp40/public.h deleted file mode 100644 index ffbe4e463560..000000000000 --- a/dmake/winnt/microsft/vpp40/public.h +++ /dev/null @@ -1,167 +0,0 @@ -/* RCS $Id: public.h,v 1.9 2007-10-15 15:59:48 ihi Exp $ --- WARNING -- This file is AUTOMATICALLY GENERATED DO NOT EDIT IT --- --- --- SYNOPSIS --- Local functions exported to be visible by others. --- --- DESCRIPTION --- This file is generated by 'genpub'. Function declarations --- that appear in this file are extracted by 'genpub' from --- source files. Any function in the source file whose definition --- appears like: --- --- PUBLIC return_type --- function( arg_list ); --- type_expr1 arg1; --- ... --- --- has its definition extracted and a line of the form: --- --- return_type function ANSI((type_expr1,type_expr2,...)); --- --- entered into the output file. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -#ifndef _DMAKE_PUBLIC_h -#define _DMAKE_PUBLIC_h - -#ifdef EXTERN -#undef EXTERN -#endif -#if defined(DEFINE_DMAKE_VARIABLES) -#define EXTERN -#else -#define EXTERN extern -#endif - -/***** genpub: Begin list of generated function headers */ -void Infer_recipe ANSI((CELLPTR, CELLPTR)); -int Make_targets ANSI(()); -int Make ANSI((CELLPTR, CELLPTR)); -int Exec_commands ANSI((CELLPTR)); -void Print_cmnd ANSI((char *, int, int)); -int Push_dir ANSI((char *, char *, int)); -void Pop_dir ANSI((int)); -void Append_line ANSI((char *, int, FILE *, char *, int, int)); -void Stat_target ANSI((CELLPTR, int, int)); -char *Expand ANSI((char *)); -char *Apply_edit ANSI((char *, char *, char *, int, int)); -void Map_esc ANSI((char *)); -char* Apply_modifiers ANSI((int, char *)); -char* Tokenize ANSI((char *, char *, char, int)); -char* ScanToken ANSI((char *, char **, int)); -char *DmStrJoin ANSI((char *, char *, int, int)); -char *DmStrAdd ANSI((char *, char *, int)); -char *DmStrApp ANSI((char *, char *)); -char *DmStrDup ANSI((char *)); -char *DmStrDup2 ANSI((char *)); -char *DmStrPbrk ANSI((char *, char *)); -char *DmStrSpn ANSI((char *, char *)); -char *DmStrStr ANSI((char *, char *)); -char *DmSubStr ANSI((char *, char *)); -uint16 Hash ANSI((char *, uint32 *)); -HASHPTR Get_name ANSI((char *, HASHPTR *, int)); -HASHPTR Search_table ANSI((HASHPTR *, char *, uint16 *, uint32 *)); -HASHPTR Push_macro ANSI((HASHPTR)); -HASHPTR Pop_macro ANSI((HASHPTR)); -HASHPTR Def_macro ANSI((char *, char *, int)); -CELLPTR Def_cell ANSI((char *)); -LINKPTR Add_prerequisite ANSI((CELLPTR, CELLPTR, int, int)); -void Clear_prerequisites ANSI((CELLPTR)); -int Test_circle ANSI((CELLPTR, int)); -STRINGPTR Def_recipe ANSI((char *, STRINGPTR, int, int)); -t_attr Rcp_attribute ANSI((char *)); -int main ANSI((int, char **)); -FILE *Openfile ANSI((char *, int, int)); -FILE *Closefile ANSI(()); -FILE *Search_file ANSI((char *, char **)); -char *Filename ANSI(()); -int Nestlevel ANSI(()); -FILE *TryFiles ANSI((LINKPTR)); -void Fatal ANSI((ARG (char *,fmt),ARG (va_alist_type, va_alist))); -void Error ANSI((ARG (char *,fmt),ARG (va_alist_type, va_alist))); -void Warning ANSI((ARG (char *,fmt),ARG (va_alist_type, va_alist))); -void No_ram ANSI(()); -void Usage ANSI((int)); -void Version ANSI(()); -char *Get_suffix ANSI((char *)); -char *Basename ANSI((char *)); -char *Filedir ANSI((char *)); -char *Build_path ANSI((char *, char *)); -void Make_rules ANSI(()); -void Create_macro_vars ANSI(()); -time_t Do_stat ANSI((char *, char *, char **, int)); -int Do_touch ANSI((char *, char *, char **)); -void Void_lib_cache ANSI((char *, char *)); -time_t Do_time ANSI(()); -void Do_profile_output ANSI((char *, uint16, CELLPTR)); -int Do_cmnd ANSI((char **, int, int, CELLPTR, t_attr, int)); -char ** Pack_argv ANSI((int, int, char **)); -char *Read_env_string ANSI((char *)); -int Write_env_string ANSI((char *, char *)); -void ReadEnvironment ANSI(()); -void Catch_signals ANSI((void (*)(int))); -void Clear_signals ANSI(()); -void Prolog ANSI((int, char* [])); -void Epilog ANSI((int)); -char *Get_current_dir ANSI(()); -int Set_dir ANSI((char*)); -char Get_switch_char ANSI(()); -FILE* Get_temp ANSI((char **, char *)); -FILE *Start_temp ANSI((char *, CELLPTR, char **)); -void Open_temp_error ANSI((char *, char *)); -void Link_temp ANSI((CELLPTR, FILE *, char *)); -void Close_temp ANSI((CELLPTR, FILE *)); -void Unlink_temp_files ANSI((CELLPTR)); -void Handle_result ANSI((int, int, int, CELLPTR)); -void Update_time_stamp ANSI((CELLPTR)); -int Remove_file ANSI((char *)); -void Parse ANSI((FILE *)); -int Get_line ANSI((char *, FILE *)); -char *Do_comment ANSI((char *, char **, int)); -char *Get_token ANSI((TKSTRPTR, char *, int)); -void Quit ANSI((int)); -void Read_state ANSI(()); -void Write_state ANSI(()); -int Check_state ANSI((CELLPTR, STRINGPTR *, int)); -void Dump ANSI(()); -void Dump_recipe ANSI((STRINGPTR)); -int Parse_macro ANSI((char *, int)); -int Macro_op ANSI((char *)); -int Parse_rule_def ANSI((int *)); -int Rule_op ANSI((char *)); -void Add_recipe_to_list ANSI((char *, int, int)); -void Bind_rules_to_targets ANSI((int)); -int Set_group_attributes ANSI((char *)); -DFALINKPTR Match_dfa ANSI((char *)); -void Check_circle_dfa ANSI(()); -void Add_nfa ANSI((char *)); -char *Exec_function ANSI((char *)); -int dchdir ANSI((char *)); -void dstrlwr ANSI((char *, char *)); -time_t seek_arch ANSI((char*, char*)); -int touch_arch ANSI((char*, char*)); -int If_root_path ANSI((char *)); -int runargv ANSI((CELLPTR, int, int, t_attr, char **)); -void Clean_up_processes ANSI(()); -int Wait_for_child ANSI((int, int)); -void Remove_prq ANSI((CELLPTR)); - -#endif diff --git a/dmake/winnt/microsft/vpp40/runargv.c b/dmake/winnt/microsft/vpp40/runargv.c deleted file mode 100644 index 61842094dda8..000000000000 --- a/dmake/winnt/microsft/vpp40/runargv.c +++ /dev/null @@ -1,285 +0,0 @@ -Blake sent me the wrong one. - -/* RCS $Id: runargv.c,v 1.2 2007-10-15 16:00:01 ihi Exp $ --- --- SYNOPSIS --- Invoke a sub process. --- --- DESCRIPTION --- Use the standard methods of executing a sub process. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -#include <process.h> -#include <errno.h> -#include <signal.h> -#include "extern.h" -#include "sysintf.h" - -extern char **environ; - -typedef struct prp { - char *prp_cmd; - int prp_group; - int prp_ignore; - int prp_last; - int prp_shell; - struct prp *prp_next; -} RCP, *RCPPTR; - -typedef struct pr { - int pr_valid; - int pr_pid; - CELLPTR pr_target; - int pr_ignore; - int pr_last; - RCPPTR pr_recipe; - RCPPTR pr_recipe_end; - char *pr_dir; -} PR; - -static PR *_procs = NIL(PR); -static int _proc_cnt = 0; -static int _abort_flg= FALSE; -static int _use_i = -1; -static int _do_upd = 0; - -static void _add_child ANSI((int, CELLPTR, int, int)); -static void _attach_cmd ANSI((char *, int, int, CELLPTR, int, int)); -static void _finished_child ANSI((int, int)); -static int _running ANSI((CELLPTR)); - -PUBLIC int -runargv(target, ignore, group, last, shell, cmd) -CELLPTR target; -int ignore; -int group; -int last; -int shell; -char *cmd; -{ - extern int errno; - extern char *sys_errlist[]; - int pid; - char **argv; - - if( _running(target) /*&& Max_proc != 1*/ ) { - /* The command will be executed when the previous recipe - * line completes. */ - _attach_cmd( cmd, group, ignore, target, last, shell ); - return(1); - } - - while( _proc_cnt == Max_proc ) - if( Wait_for_child(FALSE, -1) == -1 ) Fatal( "Lost a child %d", errno ); - - argv = Pack_argv( group, shell, cmd ); - - pid = _spawnvpe(_P_NOWAIT, argv[0], argv, environ); - if (pid == -1) { /* failed */ - Error("%s: %s", argv[0], sys_errlist[errno]); - Handle_result(-1, ignore, _abort_flg, target); - return(-1); - } else - _add_child(pid, target, ignore, last); - - return(1); -} - - -PUBLIC int -Wait_for_child( abort_flg, pid ) -int abort_flg; -int pid; -{ - int wid; - int status; - int waitchild; - - waitchild = (pid == -1)? FALSE : Wait_for_completion; - - do { - if( (wid = wait(&status)) == -1 ) return(-1); - - _abort_flg = abort_flg; - _finished_child(wid, status); - _abort_flg = FALSE; - } while( waitchild && pid != wid ); - - return(0); -} - - -PUBLIC void -Clean_up_processes() -{ - if( _procs != NIL(PR) ) - { - register int i; - for( i=0; i<Max_proc; i++ ) - if( _procs[i].pr_valid ) - kill(_procs[i].pr_pid, SIGTERM); - while( Wait_for_child(TRUE, -1) != -1 ); - } -} - -static void -_add_child( pid, target, ignore, last ) -int pid; -CELLPTR target; -int ignore; -int last; -{ - register int i; - register PR *pp; - - if( _procs == NIL(PR) ) { - TALLOC( _procs, Max_proc, PR ); - } - - if( (i = _use_i) == -1 ) - for( i=0; i<Max_proc; i++ ) - if( !_procs[i].pr_valid ) - break; - - pp = _procs+i; - - pp->pr_valid = 1; - pp->pr_pid = pid; - pp->pr_target = target; - pp->pr_ignore = ignore; - pp->pr_last = last; - pp->pr_dir = DmStrDup(Get_current_dir()); - - Current_target = NIL(CELL); - - _proc_cnt++; - - if( Wait_for_completion ) Wait_for_child( FALSE, pid ); -} - - -static void -_finished_child(pid, status) -int pid; -int status; -{ - register int i; - char *dir; - - for( i=0; i<Max_proc; i++ ) - if( _procs[i].pr_valid && _procs[i].pr_pid == pid ) - break; - - /* Some children we didn't make esp true if using /bin/sh to execute a - * a pipe and feed the output as a makefile into dmake. */ - if( i == Max_proc ) return; - _procs[i].pr_valid = 0; - _proc_cnt--; - dir = DmStrDup(Get_current_dir()); - Set_dir( _procs[i].pr_dir ); - - if( _procs[i].pr_recipe != NIL(RCP) && !_abort_flg ) { - RCPPTR rp = _procs[i].pr_recipe; - - - Current_target = _procs[i].pr_target; - Handle_result( status, _procs[i].pr_ignore, FALSE, _procs[i].pr_target ); - Current_target = NIL(CELL); - - if ( _procs[i].pr_target->ce_attr & A_ERROR ) { - _procs[i].pr_last = TRUE; - goto ABORT_REMAINDER_OF_RECIPE; - } - - _procs[i].pr_recipe = rp->prp_next; - - _use_i = i; - runargv( _procs[i].pr_target, rp->prp_ignore, rp->prp_group, - rp->prp_last, rp->prp_shell, rp->prp_cmd ); - _use_i = -1; - - FREE( rp->prp_cmd ); - FREE( rp ); - - if( _proc_cnt == Max_proc ) Wait_for_child( FALSE, -1 ); - } - else { - Handle_result(status,_procs[i].pr_ignore,_abort_flg,_procs[i].pr_target); - - ABORT_REMAINDER_OF_RECIPE: - if( _procs[i].pr_last ) { - FREE(_procs[i].pr_dir ); - - if( !Doing_bang ) Update_time_stamp( _procs[i].pr_target ); - } - } - - Set_dir(dir); - FREE(dir); -} - - -static int -_running( cp ) -CELLPTR cp; -{ - register int i; - - if( !_procs ) return(FALSE); - - for( i=0; i<Max_proc; i++ ) - if( _procs[i].pr_valid && - _procs[i].pr_target == cp ) - break; - - return( i != Max_proc ); -} - - -static void -_attach_cmd( cmd, group, ignore, cp, last, shell ) -char *cmd; -int group; -int ignore; -CELLPTR cp; -int last; -int shell; -{ - register int i; - RCPPTR rp; - - for( i=0; i<Max_proc; i++ ) - if( _procs[i].pr_valid && - _procs[i].pr_target == cp ) - break; - - TALLOC( rp, 1, RCP ); - rp->prp_cmd = DmStrDup(cmd); - rp->prp_group = group; - rp->prp_ignore= ignore; - rp->prp_last = last; - rp->prp_shell = shell; - - if( _procs[i].pr_recipe == NIL(RCP) ) - _procs[i].pr_recipe = _procs[i].pr_recipe_end = rp; - else { - _procs[i].pr_recipe_end->prp_next = rp; - _procs[i].pr_recipe_end = rp; - } -} diff --git a/dmake/winnt/microsft/vpp40/template.mk b/dmake/winnt/microsft/vpp40/template.mk deleted file mode 100644 index e53922df68c3..000000000000 --- a/dmake/winnt/microsft/vpp40/template.mk +++ /dev/null @@ -1,7 +0,0 @@ -# ** Default build configuration for dmake. -# ** DO NOT PLACE LOCAL DEFINITIONS INTO THIS FILE IT IS AUTO GENERATED -# ** USE "startup/local.mk" for those. - - OS *:= winnt - OSRELEASE *:= microsft - OSENVIRONMENT *:= vpp40 diff --git a/dmake/winnt/microsft/vpp40/tempnam.c b/dmake/winnt/microsft/vpp40/tempnam.c deleted file mode 100644 index c27da47c7602..000000000000 --- a/dmake/winnt/microsft/vpp40/tempnam.c +++ /dev/null @@ -1,110 +0,0 @@ -/* RCS $Id: tempnam.c,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $ --- --- SYNOPSIS --- tempnam --- --- DESCRIPTION --- temp file name generation routines. --- --- AUTHOR --- Dennis Vadura, dvadura@dmake.wticorp.com --- --- WWW --- http://dmake.wticorp.com/ --- --- COPYRIGHT --- Copyright (c) 1996,1997 by WTI Corp. All rights reserved. --- --- This program is NOT free software; you can redistribute it and/or --- modify it under the terms of the Software License Agreement Provided --- in the file <distribution-root>/readme/license.txt. --- --- LOG --- Use cvs log to obtain detailed change logs. -*/ - -/*LINTLIBRARY*/ -#include <stdio.h> -#include <string.h> -#include <stdlib.h> -#include <dos.h> - -#if defined(max) -# undef max -#endif -#define max(A,B) (((A)<(B))?(B):(A)) - -extern char *mktemp(); -extern int access(); -int d_access(); - -/* MSC stdio.h defines P_tmpdir, so let's undo it here */ -/* Under DOS leave the default tmpdir pointing here! */ -#ifdef P_tmpdir -#undef P_tmpdir -#endif -static char *P_tmpdir = ""; - -char * -tempnam(dir, prefix) -char *dir; /* use this directory please (if non-NULL) */ -char *prefix; /* use this (if non-NULL) as filename prefix */ -{ - static int count = 0; - register char *p, *q, *tmpdir; - int tl=0, dl=0, pl; - char buf[30]; - - pl = strlen(P_tmpdir); - - if( (tmpdir = getenv("TMPDIR")) != NULL ) tl = strlen(tmpdir); - else if( (tmpdir = getenv("TMP")) != NULL ) tl = strlen(tmpdir); - if( dir != NULL ) dl = strlen(dir); - - if( (p = malloc((unsigned)(max(max(dl,tl),pl)+13))) == NULL ) - return(NULL); - - *p = '\0'; - - if( (tl == 0) || (d_access( strcpy(p, tmpdir), 0) != 0) ) - if( (dl == 0) || (d_access( strcpy(p, dir), 0) != 0) ) - if( d_access( strcpy(p, P_tmpdir), 0) != 0 ) - if( !prefix ) - prefix = "tp"; - - if(prefix) - { - *(p+strlen(p)+2) = '\0'; - (void)strncat(p, prefix, 2); - } - - sprintf( buf, "%08x", _psp ); - buf[6]='\0'; - (void)strcat(p, buf ); - sprintf( buf, "%04d", count++ ); - q=p+strlen(p)-6; - *q++ = buf[0]; *q++ = buf[1]; - *q++ = buf[2]; *q++ = buf[3]; - - if( (q = strrchr(p,'.')) != NULL ) *q = '\0'; - - return(p); -} - - - -d_access( name, flag ) -char *name; -int flag; -{ - extern char *DirSepStr; - char *p; - int r; - - if( name == NULL || !*name ) return(1); /* NULL dir means current dir */ - r = access( name, flag ); - p = name+strlen(name)-1; - if(*p != '/' && *p != '\\') strcat( p, DirSepStr ); - - return( r ); -} |