hints files from .370 to .500

This commit is contained in:
nhmall
2026-04-26 08:15:08 -04:00
parent f9ccf24b0b
commit 99525ea7b7
15 changed files with 71 additions and 71 deletions
+26
View File
@@ -0,0 +1,26 @@
#------------------------------------------------------------------------------
# NetHack 3.7 multisnd-post.500 $NHDT-Date: 1597332785 2020/08/13 15:33:05 $ $NHDT-Branch: NetHack-3.7 $
ifeq "$(HAVE_SNDLIB)" "1"
# note: one possible value for $(SNDLIBSRC) is 'macsound.m' which is written
# in Objective-C; this relies on $(CC) recognizing the filename suffix
# and knowing how to handle that; clang on MacOS does, both when
# masquerading as gcc and when invoked as itself
$(TARGETPFX)$(SNDLIBOBJ): $(SNDLIBSRC) $(HACK_H)
$(CC) $(CFLAGS) -c -o $@ $(SNDLIBSRC)
ifeq "$(NEEDS_WAV)" "1"
$(WAVDIR)/%.wav: ../util/uudecode $(WAVDIR)/%.uu
$^
mv $(notdir $@) $@
../util/uudecode: ../sys/share/uudecode.c
( cd ../util ; $(MAKE) uudecode )
endif # NEEDS_WAV
endif # HAVE_SNDLIB
# end of multisnd-post.500
#------------------------------------------------------------------------------