changeset 153:3e67a1212cb0

- removing experimental *nix/win-cross-platform dynmake system, as probably never used
author cslag
date Thu, 10 Nov 2016 19:05:01 +0100
parents d48a8b8d2ef9
children 3729a99ef03c
files Makefile.M buildsys/dynmake/Makefile.base.M buildsys/dynmake/dynmake.bat buildsys/dynmake/dynmake.sh dynMakefile dyncall/Makefile.M dyncall/dynMakefile dyncallback/Makefile.M dyncallback/dynMakefile dynload/Makefile.M dynload/dynMakefile test/Makefile.M test/call_suite/Makefile.M test/call_suite/dynMakefile test/callback_plain/Makefile.M test/callback_plain/dynMakefile test/callback_suite/Makefile.M test/callback_suite/dynMakefile test/callf/Makefile.M test/callf/dynMakefile test/dynMakefile test/ellipsis/Makefile.M test/ellipsis/dynMakefile test/malloc_wx/Makefile.M test/malloc_wx/dynMakefile test/nm/Makefile.M test/nm/dynMakefile test/plain/Makefile.M test/plain/dynMakefile test/plain_c++/Makefile.M test/plain_c++/dynMakefile test/resolve_self/Makefile.M test/resolve_self/dynMakefile test/suite/Makefile.M test/suite/dynMakefile test/suite2/Makefile.M test/suite2/dynMakefile test/suite2_x86win32fast/Makefile.M test/suite2_x86win32fast/dynMakefile test/suite2_x86win32std/Makefile.M test/suite2_x86win32std/dynMakefile test/suite3/Makefile.M test/suite3/dynMakefile test/suite_floats/Makefile.M test/suite_floats/dynMakefile test/suite_x86win32fast/Makefile.M test/suite_x86win32fast/dynMakefile test/suite_x86win32std/Makefile.M test/suite_x86win32std/dynMakefile test/syscall/Makefile.M test/syscall/dynMakefile test/thunk/Makefile.M test/thunk/dynMakefile
diffstat 53 files changed, 0 insertions(+), 438 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-#include "buildsys/dynmake/Makefile.base.M"
-
-all:
-	cd dyncall     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd dynload     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd dyncallback _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-
-clean:
-	cd dyncall     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd dynload     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd dyncallback _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-
-tests:
-	cd test        _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-
--- a/buildsys/dynmake/Makefile.base.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,82 +0,0 @@
-#include "../../dyncall/dyncall_macros.h"
-
-#if defined(DC_WINDOWS) && defined(MAKE_CMD_nmake)
-
-/* Abstractions */
-#define _(X)      $(X)         /* Standard variables */
-#define _L(X)     X.lib
-#define _O(X)     X.obj
-
-#define TARGET   @
-#define PREREQS  **
-
-/* Makefile internal vars for platform abstraction */
-MAKEFLAGS_USER = /NOLOGO
-MAKEFLAG_FILE = /f
-MAKE_DEFAULT_FILE = dynMakefile
-SHELL_COMMAND_SEPARATOR = &&
-
-AR = lib
-ARFLAGS_USER = /NOLOGO
-ARFLAGS = 
-ARFLAG_OUT_PREFIX = /OUT:
-
-CFLAGS_USER      = /nologo /I..\dyncall /I..\dyncallback
-CFLAGS           = _(CFLAGS) _(CFLAGS_USER)
-
-LDFLAGS_USER      = /nologo /L..\dyncall /L..\dyncallback
-LDFLAGS           = _(LDFLAGS) _(LDFLAGS_USER)
-LDFLAG_IN_PREFIX  =
-LDFLAG_OUT_PREFIX = /OUT:
-
-ASFLAGS_USER = /nologo
-AFLAGS       = _(AFLAGS) _(ASFLAGS_USER)  /* Set AFLAGS (without 'S'), which is the standard nmake predefined macro for MASM */
-ASFLAGS      = _(AFLAGS)
-
-RM = del
-
-.SUFFIXES : .S
-
-.S.obj:
-	cl /nologo /EP $< > $*.asm
-	_(AS) _(ASFLAGS) /c $*.asm
-	del $*.asm
-
-
-#else
-
-/* Abstractions */
-#define _(X)      ${X}         /* Standard variables */
-#define _L(X)     lib##X.a
-#define _O(X)     X.o
-
-#define TARGET   @
-#if defined(MAKE_CMD_gmake) || (defined(DC__OS_Linux) && !defined(MAKE_CMD_bsdmake)) || (defined(DC__OS_Darwin) && !defined(MAKE_CMD_bsdmake)) || (defined(DC__OS_SunOS) && !defined(MAKE_CMD_bsdmake))
-#  define PREREQS  ^
-#else
-#  define PREREQS  >
-#endif
-
-
-/* Makefile internal vars for platform abstraction */
-MAKEFLAGS_USER = 
-MAKEFLAG_FILE = -f
-MAKE_DEFAULT_FILE = dynMakefile
-SHELL_COMMAND_SEPARATOR = ;
-
-ARFLAG_OUT_PREFIX = 
-
-CFLAGS_USER = -I ../dyncall -I ../dyncallback
-CFLAGS     += _(CFLAGS_USER)
-
-LDFLAGS_USER      = -L../../dyncall -L../../dyncallback
-LDFLAGS          += _(LDFLAGS_USER)
-LDFLAG_IN_PREFIX  = -l
-LDFLAG_OUT_PREFIX = -o
-
-ASFLAGS_USER = 
-
-RM = rm -f
-
-#endif
-
--- a/buildsys/dynmake/dynmake.bat	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-cl /nologo /DMAKE_CMD_%~n2 /EP Makefile.M 1> Makefile.dynmake
-%2 /NOLOGO /f Makefile.dynmake %1
--- a/buildsys/dynmake/dynmake.sh	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-#!/bin/sh
-#cpp -D MAKE_CMD_$2 -P Makefile.M | sed "s/^  */	/" > Makefile.dynmake
-gcc -D MAKE_CMD_$2 -E -P -x c Makefile.M | sed "s/^  */	/" > Makefile.dynmake
-$2 -f Makefile.dynmake $1
--- a/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/dyncall/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-#include "../buildsys/dynmake/Makefile.base.M"
-
-all: _L(dyncall_s)
-
-_L(dyncall_s): _O(dyncall_vector) _O(dyncall_api) _O(dyncall_callvm) _O(dyncall_callvm_base) _O(dyncall_call) _O(dyncall_callf) _O(dyncall_struct)
-	_(AR) _(ARFLAGS) _(ARFLAG_OUT_PREFIX)_(TARGET) _(PREREQS)
-
-clean:
-	_(RM) _O(*)
-	_(RM) _L(dyncall_s)
--- a/dyncall/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/dyncallback/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-#include "../buildsys/dynmake/Makefile.base.M"
-
-all: _L(dyncallback_s)
-
-_L(dyncallback_s): _O(dyncall_thunk) _O(dyncall_alloc_wx) _O(dyncall_args) _O(dyncall_callback) _O(dyncall_callback_arch)
-	_(AR) _(ARFLAGS) _(ARFLAG_OUT_PREFIX)_(TARGET) _(PREREQS)
-
-clean:
-        _(RM) _O(*)
-        _(RM) _L(dyncallback_s)
--- a/dyncallback/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/dynload/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-#include "../buildsys/dynmake/Makefile.base.M"
-
-all: _L(dynload_s)
-
-_L(dynload_s): _O(dynload) _O(dynload_syms)
-	_(AR) _(ARFLAGS) _(ARFLAG_OUT_PREFIX)_(TARGET) _(PREREQS)
-
-clean:
-        _(RM) _O(*)
-        _(RM) _L(dynload_s)
--- a/dynload/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,62 +0,0 @@
-#include "../buildsys/dynmake/Makefile.base.M"
-
-all:
-	cd plain                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd plain_c++                   _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd call_suite                  _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite2                      _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite3                      _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite_floats                _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd callback_plain              _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd callback_suite              _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd ellipsis                    _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd callf                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd nm                          _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd resolve_self                _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd thunk                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd malloc_wx                   _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-#if defined(DC__Arch_Intel_x86)
-	cd syscall                     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite_x86win32fast          _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite_x86win32std           _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite2_x86win32fast         _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-	cd suite2_x86win32std          _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-#endif
-//	cd gen-masm                    _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-//	cd hacking-arm-thumb-interwork _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-//	cd hacking-mips                _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-//	cd samples                     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-//	cd sharedlib                   _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-//	cd sign                        _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE)
-
-clean:
-	cd plain                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd plain_c++                   _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd call_suite                  _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite2                      _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite3                      _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite_floats                _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd callback_plain              _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd callback_suite              _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd ellipsis                    _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd callf                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd nm                          _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd resolve_self                _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd thunk                       _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd malloc_wx                   _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-#if defined(DC__Arch_Intel_x86)
-	cd syscall                     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite_x86win32fast          _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite_x86win32std           _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite2_x86win32fast         _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-	cd suite2_x86win32std          _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-#endif
-//	cd gen-masm                    _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-//	cd hacking-arm-thumb-interwork _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-//	cd hacking-mips                _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-//	cd samples                     _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-//	cd sharedlib                   _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-//	cd sign                        _(SHELL_COMMAND_SEPARATOR) _(MAKE) _(MAKEFLAGS_USER) _(MAKEFLAG_FILE) _(MAKE_DEFAULT_FILE) clean
-
--- a/test/call_suite/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/call_suite/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/callback_plain/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/callback_plain/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/callback_suite/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/callback_suite/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/callf/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/callf/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all && exit || sh $(?:bat=sh) all
-clean: ./../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean && exit || sh $(?:bat=sh) clean
--- a/test/ellipsis/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/ellipsis/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/malloc_wx/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/malloc_wx/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/nm/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/nm/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/plain/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all: plain
-
-plain: _O(test_main) _O(test_structs)
-	_(CC) _(CFLAGS) _(PREREQS) _(LDFLAGS) _(LDFLAG_IN_PREFIX)dyncall_s _(LDFLAG_OUT_PREFIX)_(TARGET)
-
-clean:
-	_(RM) _O(*)
-	_(RM) plain
--- a/test/plain/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/plain_c++/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/plain_c++/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/resolve_self/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/resolve_self/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite2/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite2/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite2_x86win32fast/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite2_x86win32fast/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite2_x86win32std/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite2_x86win32std/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite3/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite3/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite_floats/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite_floats/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite_x86win32fast/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite_x86win32fast/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/suite_x86win32std/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/suite_x86win32std/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/syscall/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/syscall/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)
--- a/test/thunk/Makefile.M	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-#include "../../buildsys/dynmake/Makefile.base.M"
-
-all:
-	echo not impl!!!
-
-clean:
-	echo not impl!!!
--- a/test/thunk/dynMakefile	Sat Oct 22 15:55:54 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-all: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) all $(MAKE) && exit || sh $(?:bat=sh) all $(MAKE)
-clean: ./../../buildsys/dynmake/dynmake.bat
-	$(?:/=\\) clean $(MAKE) && exit || sh $(?:bat=sh) clean $(MAKE)