# HG changeset patch # User cslag # Date 1478801101 -3600 # Node ID 3e67a1212cb03a06dbcd5188a886beb336c36105 # Parent d48a8b8d2ef9b70bbf82657d5199978d3a57f954 - removing experimental *nix/win-cross-platform dynmake system, as probably never used diff -r d48a8b8d2ef9 -r 3e67a1212cb0 Makefile.M --- 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) - diff -r d48a8b8d2ef9 -r 3e67a1212cb0 buildsys/dynmake/Makefile.base.M --- 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 - diff -r d48a8b8d2ef9 -r 3e67a1212cb0 buildsys/dynmake/dynmake.bat --- 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 diff -r d48a8b8d2ef9 -r 3e67a1212cb0 buildsys/dynmake/dynmake.sh --- 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 diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dyncall/Makefile.M --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dyncall/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dyncallback/Makefile.M --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dyncallback/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dynload/Makefile.M --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 dynload/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/Makefile.M --- 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 - diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/call_suite/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/call_suite/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/callback_plain/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/callback_plain/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/callback_suite/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/callback_suite/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/callf/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/callf/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/dynMakefile --- 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 diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/ellipsis/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/ellipsis/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/malloc_wx/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/malloc_wx/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/nm/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/nm/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/plain/Makefile.M --- 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 diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/plain/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/plain_c++/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/plain_c++/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/resolve_self/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/resolve_self/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite2/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite2/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite2_x86win32fast/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite2_x86win32fast/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite2_x86win32std/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite2_x86win32std/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite3/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite3/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite_floats/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite_floats/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite_x86win32fast/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite_x86win32fast/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite_x86win32std/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/suite_x86win32std/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/syscall/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/syscall/dynMakefile --- 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) diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/thunk/Makefile.M --- 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!!! diff -r d48a8b8d2ef9 -r 3e67a1212cb0 test/thunk/dynMakefile --- 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)