From ae6bb2420b60f973ea2d9c447e0ff85180d37298 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 23 Jan 2023 07:42:06 -0500 Subject: [PATCH] comment out sample.c inclusion in Makefile.nmake Makefile.nmake A sample file that was tested for compilability was left in the Makefile. Harmless if you have the sample.c in the right place on your machine. Fatal to the build if you do not. Resolves #961 --- sys/windows/Makefile.nmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/windows/Makefile.nmake b/sys/windows/Makefile.nmake index 77bd1a493..12e595fd9 100644 --- a/sys/windows/Makefile.nmake +++ b/sys/windows/Makefile.nmake @@ -524,7 +524,7 @@ MDLIBTTY = $(OTTY)mdlib.o DLBOBJTTY = $(OTTY)dlb.o REGEXTTY = $(OTTY)cppregex.o LUAOBJTTY = $(OTTY)nhlua.o $(OTTY)nhlsel.o $(OTTY)nhlobj.o -SOUNDTTY = $(OTTY)windsound.o $(OTTY)sample.o +SOUNDTTY = $(OTTY)windsound.o #$(OTTY)sample.o VVOBJTTY = $(OTTY)version.o SOBJTTY = $(OTTY)windmain.o $(OTTY)windsys.o $(OTTY)win10.o \ @@ -1797,7 +1797,7 @@ $(OTTY)consoletty.o: $(MSWSYS)\consoletty.c $(WINDHDR) $(HACK_H) $(TILE_H) $(OTTY)win10.o: $(MSWSYS)\win10.c $(WINDHDR) $(HACK_H) $(OTTY)windsys.o: $(MSWSYS)\windsys.c $(WINDHDR) $(HACK_H) $(OTTY)windsound.o: ..\sound\windsound\windsound.c $(HACK_H) -$(OTTY)sample.o: ..\sound\sample\sample.c $(HACK_H) +#$(OTTY)sample.o: ..\sound\sample\sample.c $(HACK_H) $(OTTY)windmain.o: $(MSWSYS)\windmain.c $(WINDHDR) $(HACK_H) $(OTTY)safeproc.o: $(WSHR)\safeproc.c $(WINDHDR) $(HACK_H)