be more consistent with CROSS_TO_target macro names for cross-compiles

-DCROSS_TO_MSDOS	msdos cross-compile (djgpp cross-compiler)
-DCROSS_TO_AMIGA	Amiga cross-compile
-DCROSS_TO_WASM		wasm cross-compile (emscripten)
This commit is contained in:
nhmall
2020-10-08 13:49:24 -04:00
parent 342323eb15
commit 5dcc328759
16 changed files with 34 additions and 34 deletions

View File

@@ -754,7 +754,7 @@ char *str;
}
#endif /* EXEPATH */
#ifdef AMIGA_CROSS
#ifdef CROSS_TO_AMIGA
void msmsg
VA_DECL(const char *, fmt)
{

View File

@@ -12,10 +12,10 @@
#include <ctype.h>
#include <fcntl.h>
#if !defined(MSDOS) && !defined(WIN_CE) && !defined(AMIGA_CROSS)
#if !defined(MSDOS) && !defined(WIN_CE) && !defined(CROSS_TO_AMIGA)
#include <process.h>
#endif
#if defined(__GO32__) || defined(AMIGA_CROSS)
#if defined(__GO32__) || defined(CROSS_TO_AMIGA)
#define P_WAIT 0
#define P_NOWAIT 1
#endif
@@ -154,7 +154,7 @@ const char *str;
#ifdef TOS
msmsg("Hit <Return> %s.", str);
#else
#ifdef AMIGA_CROSS
#ifdef CROSS_TO_AMIGA
(void) printf("Hit <Enter> %s.", str);
#else
msmsg("Hit <Enter> %s.", str);