From 45114c81e7b11d69098bea46e281856812f2308d Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Thu, 3 Mar 2022 23:23:20 +0300 Subject: [PATCH] watcom makefiles: tweak watcom headers include order (just in case) --- Makefile.os2 | 3 ++- Makefile.w32 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.os2 b/Makefile.os2 index 28188a1..13a2cdb 100644 --- a/Makefile.os2 +++ b/Makefile.os2 @@ -9,6 +9,7 @@ !ifndef target target = dll !endif +# change libxmp_path as needed (or specify on the wmake cmdline) !ifndef libxmp_path libxmp_path = ../libxmp !endif @@ -18,7 +19,7 @@ SYSTEM=os2v2 CPPFLAGS=-DHAVE_SIGNAL_H -DHAVE_STRINGS_H CPPFLAGS+= -DSOUND_OS2DART -INCLUDES=-I"src/watcom" -Isrc -I"$(%WATCOM)/h" -I"$(%WATCOM)/h/os2" +INCLUDES=-I"src/watcom" -Isrc -I"$(%WATCOM)/h/os2" -I"$(%WATCOM)/h" !ifeq target static CPPFLAGS+= -DBUILDING_STATIC diff --git a/Makefile.w32 b/Makefile.w32 index 7487973..00854f2 100644 --- a/Makefile.w32 +++ b/Makefile.w32 @@ -9,6 +9,7 @@ !ifndef target target = dll !endif +# change libxmp_path as needed (or specify on the wmake cmdline) !ifndef libxmp_path libxmp_path = ../libxmp !endif @@ -18,7 +19,7 @@ SYSTEM=nt CPPFLAGS=-DHAVE_SIGNAL_H -DHAVE_STRINGS_H CPPFLAGS+= -DSOUND_WIN32 -INCLUDES=-I"src/win32" -Isrc -I"$(%WATCOM)/h" -I"$(%WATCOM)/h/nt" +INCLUDES=-I"src/win32" -Isrc -I"$(%WATCOM)/h/nt" -I"$(%WATCOM)/h" !ifeq target static CPPFLAGS+= -DBUILDING_STATIC