Still not quite there yet though. Focusing on tty (maybe curses) right now. The gui has had significant code deviation from prior gcc builds for windows and will take more work.
101 lines
2.1 KiB
Makefile
101 lines
2.1 KiB
Makefile
# $NHDT-Date: 1524689255 2018/04/25 20:47:35 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.12 $
|
|
# Copyright (c) 2018 by Michael Allison
|
|
# NetHack may be freely redistributed. See license for details.
|
|
|
|
# Set all of these or none of them.
|
|
#
|
|
# bison and flex are the ones found in GnuWin32, which
|
|
# is probably the easiest set of these tools to find
|
|
# on Windows.
|
|
#
|
|
#YACC = bison.exe -y
|
|
#LEX = flex.exe
|
|
#YTABC = y.tab.c
|
|
#YTABH = y.tab.h
|
|
#LEXYYC = lex.yy.c
|
|
SHELL = cmd.exe
|
|
|
|
default: all
|
|
|
|
all: tools ../util/lev_yacc.c ../util/lev_lex.c
|
|
|
|
rebuild: clean all
|
|
|
|
clean:
|
|
-del ..\util\lev_lex.c
|
|
-del ..\util\lev_yacc.c
|
|
-del ..\include\lev_comp.h
|
|
|
|
tools:
|
|
ifneq "$(YACC)" ""
|
|
@echo Yacc-alike set to "$(YACC)"
|
|
@echo YTABC set to $(YTABC)
|
|
@echo YTABH set to $(YTABH)
|
|
endif
|
|
|
|
ifneq "$(LEX)" ""
|
|
@echo Lex-alike set to "$(LEX)"
|
|
@echo LEXYYC set to $(LEXYYC)
|
|
endif
|
|
|
|
#==========================================
|
|
# Level Compiler Stuff
|
|
#==========================================
|
|
|
|
../include/lev_comp.h: ../util/lev_comp.y
|
|
@echo Yacc-alike set to "$(YACC)"
|
|
ifeq "$(YACC)" ""
|
|
@echo Using pre-built lev_comp.h
|
|
chdir ..\include
|
|
copy /y ..\sys\share\lev_comp.h
|
|
copy /b lev_comp.h+,,
|
|
chdir ..\src
|
|
else
|
|
@echo Generating lev_yacc.c and lev_comp.h
|
|
chdir ..\util
|
|
$(YACC) -d lev_comp.y
|
|
copy $(YTABC) $@
|
|
copy $(YTABH) ..\include\lev_comp.h
|
|
@del $(YTABC)
|
|
@del $(YTABH)
|
|
chdir ..\src
|
|
endif
|
|
|
|
../util/lev_yacc.c: ../util/lev_comp.y
|
|
@echo Yacc-alike set to "$(YACC)"
|
|
ifeq "$(YACC)" ""
|
|
@echo Using pre-built lev_yacc.c
|
|
chdir ..\util
|
|
copy /y ..\sys\share\lev_yacc.c
|
|
copy /b lev_yacc.c+,,
|
|
chdir ..\src
|
|
else
|
|
@echo Generating lev_yacc.c and lev_comp.h
|
|
chdir ..\util
|
|
$(YACC) -d lev_comp.y
|
|
copy $(YTABC) $@
|
|
copy $(YTABH) ..\include\lev_comp.h
|
|
@del $(YTABC)
|
|
@del $(YTABH)
|
|
chdir ..\src
|
|
endif
|
|
|
|
../util/lev_lex.c: ../util/lev_comp.l
|
|
@echo Lex-alike set to "$(LEX)"
|
|
ifeq "$(LEX)" ""
|
|
@echo Using pre-built lev_lex.c
|
|
chdir ..\util
|
|
copy /y ..\sys\share\lev_lex.c
|
|
copy /b lev_lex.c+,,
|
|
chdir ..\src
|
|
else
|
|
@echo Generating lev_lex.c
|
|
chdir ..\util
|
|
$(LEX) lev_comp.l
|
|
copy $(LEXYYC) $@
|
|
@del $(LEXYYC)
|
|
chdir ..\src
|
|
endif
|
|
|
|
|