38 lines
1.1 KiB
Makefile
Executable File
38 lines
1.1 KiB
Makefile
Executable File
# NetHack 3.7 Makefile.check $NHDT-Date: 1599687610 2020/09/09 21:40:10 $ $NHDT-Branch: NetHack-3.7
|
|
|
|
SUPATH := sys/unix/
|
|
MKHINTSPATH := $(SUPATH)hints/
|
|
MKINCLPATH := $(SUPATH)hints/include/
|
|
|
|
#
|
|
# Expectations:
|
|
#
|
|
# HINTSFILE and HINTSINCLFILES are passed from the calling Makefile
|
|
# which is the case with the hints/*.370 and hints/include/*.370
|
|
# set.
|
|
#
|
|
ifneq ("$(HINTSFILE)","")
|
|
MKHINTSFILE := $(addprefix $(MKHINTSPATH), $(notdir $(HINTSFILE)))
|
|
endif
|
|
ifneq ("$(HINTSINCLFILES)","")
|
|
MKINCLFILES := $(addprefix $(MKINCLPATH), $(HINTSINCLFILES))
|
|
endif
|
|
|
|
checkmakefiles: dat/Makefile src/Makefile util/Makefile doc/Makefile Makefile
|
|
|
|
dat/Makefile: $(SUPATH)Makefile.dat $(MKHINTSFILE) $(MKINCLFILES)
|
|
@echo Attention: $@ is older than: $?
|
|
|
|
src/Makefile: $(SUPATH)Makefile.src $(MKHINTSFILE) $(MKINCLFILES)
|
|
@echo Attention: $@ is older than: $?
|
|
|
|
util/Makefile: $(SUPATH)Makefile.utl $(MKHINTSFILE) $(MKINCLFILES)
|
|
@echo Attention: $@ is older than: $?
|
|
|
|
doc/Makefile: $(SUPATH)Makefile.doc $(MKHINTSFILE) $(MKINCLFILES)
|
|
@echo Attention: $@ is older than: $?
|
|
|
|
Makefile: $(SUPATH)Makefile.top $(MKHINTSFILE) $(MKINCLFILES)
|
|
@echo Attention: $@ is older than: $?
|
|
|