Merge branch 'NetHack-3.6.2-beta01' into NetHack-3.6.2
This commit is contained in:
+4
-1
@@ -1,4 +1,4 @@
|
|||||||
$NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.218 $ $NHDT-Date: 1546144745 2018/12/30 04:39:05 $
|
$NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.219 $ $NHDT-Date: 1546212616 2018/12/30 23:30:16 $
|
||||||
|
|
||||||
This fixes36.2 file is here to capture information about updates in the 3.6.x
|
This fixes36.2 file is here to capture information about updates in the 3.6.x
|
||||||
lineage following the release of 3.6.1 in April 2018. Please note, however,
|
lineage following the release of 3.6.1 in April 2018. Please note, however,
|
||||||
@@ -319,6 +319,9 @@ when merging a stack where internal ID is used to adjust shop prices, always
|
|||||||
from shop, not when selling; doesn't affect items already on bill)
|
from shop, not when selling; doesn't affect items already on bill)
|
||||||
since knives became stackable in 3.6.0, fake player monsters could be given
|
since knives became stackable in 3.6.0, fake player monsters could be given
|
||||||
multi-quantity stacks for weapons (scalpel, athame) they never throw
|
multi-quantity stacks for weapons (scalpel, athame) they never throw
|
||||||
|
using 'O' to attempt to set bouldersym to a monster letter or warning digit
|
||||||
|
while it still had its default value would override the display value
|
||||||
|
for it to be <NUL> ('\0') after 'badoption' feedback
|
||||||
|
|
||||||
|
|
||||||
Fixes to Post-3.6.1 Problems that Were Exposed Via git Repository
|
Fixes to Post-3.6.1 Problems that Were Exposed Via git Repository
|
||||||
|
|||||||
+3
-1
@@ -1,4 +1,4 @@
|
|||||||
/* NetHack 3.6 display.h $NHDT-Date: 1525012585 2018/04/29 14:36:25 $ $NHDT-Branch: master $:$NHDT-Revision: 1.28 $ */
|
/* NetHack 3.6 display.h $NHDT-Date: 1546212620 2018/12/30 23:30:20 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.29 $ */
|
||||||
/* Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy */
|
/* Copyright (c) Dean Luick, with acknowledgements to Kevin Darcy */
|
||||||
/* and Dave Cohrs, 1990. */
|
/* and Dave Cohrs, 1990. */
|
||||||
/* NetHack may be freely redistributed. See license for details. */
|
/* NetHack may be freely redistributed. See license for details. */
|
||||||
@@ -257,6 +257,8 @@
|
|||||||
*
|
*
|
||||||
* warning A set of six representing the different warning levels.
|
* warning A set of six representing the different warning levels.
|
||||||
*
|
*
|
||||||
|
* statue One for each monster. Count: NUMMONS
|
||||||
|
*
|
||||||
* The following are offsets used to convert to and from a glyph.
|
* The following are offsets used to convert to and from a glyph.
|
||||||
*/
|
*/
|
||||||
#define NUM_ZAP 8 /* number of zap beam types */
|
#define NUM_ZAP 8 /* number of zap beam types */
|
||||||
|
|||||||
+8
-4
@@ -1,4 +1,4 @@
|
|||||||
/* NetHack 3.6 drawing.c $NHDT-Date: 1463706747 2016/05/20 01:12:27 $ $NHDT-Branch: NetHack-3.6.0 $:$NHDT-Revision: 1.51 $ */
|
/* NetHack 3.6 drawing.c $NHDT-Date: 1546212616 2018/12/30 23:30:16 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.58 $ */
|
||||||
/* Copyright (c) NetHack Development Team 1992. */
|
/* Copyright (c) NetHack Development Team 1992. */
|
||||||
/* NetHack may be freely redistributed. See license for details. */
|
/* NetHack may be freely redistributed. See license for details. */
|
||||||
|
|
||||||
@@ -357,9 +357,13 @@ init_symbols()
|
|||||||
void
|
void
|
||||||
update_bouldersym()
|
update_bouldersym()
|
||||||
{
|
{
|
||||||
showsyms[SYM_BOULDER + SYM_OFF_X] = iflags.bouldersym;
|
nhsym boulder = (nhsym) iflags.bouldersym;
|
||||||
l_syms[SYM_BOULDER + SYM_OFF_X] = iflags.bouldersym;
|
|
||||||
r_syms[SYM_BOULDER + SYM_OFF_X] = iflags.bouldersym;
|
if (!boulder)
|
||||||
|
boulder = def_oc_syms[ROCK_CLASS].sym; /* (nhsym) ROCK_SYM */
|
||||||
|
showsyms[SYM_BOULDER + SYM_OFF_X] = boulder;
|
||||||
|
l_syms[SYM_BOULDER + SYM_OFF_X] = boulder;
|
||||||
|
r_syms[SYM_BOULDER + SYM_OFF_X] = boulder;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|||||||
+16
-12
@@ -1,4 +1,4 @@
|
|||||||
/* NetHack 3.6 options.c $NHDT-Date: 1546144857 2018/12/30 04:40:57 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.349 $ */
|
/* NetHack 3.6 options.c $NHDT-Date: 1546212618 2018/12/30 23:30:18 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.350 $ */
|
||||||
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
||||||
/*-Copyright (c) Michael Allison, 2008. */
|
/*-Copyright (c) Michael Allison, 2008. */
|
||||||
/* NetHack may be freely redistributed. See license for details. */
|
/* NetHack may be freely redistributed. See license for details. */
|
||||||
@@ -2724,27 +2724,31 @@ boolean tinitial, tfrom_file;
|
|||||||
if (!(opts = string_for_opt(opts, FALSE)))
|
if (!(opts = string_for_opt(opts, FALSE)))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
escapes(opts, opts);
|
escapes(opts, opts);
|
||||||
|
/* note: dummy monclass #0 has symbol value '\0'; we allow that--
|
||||||
|
attempting to set bouldersym to '^@'/'\0' will reset to default */
|
||||||
if (def_char_to_monclass(opts[0]) != MAXMCLASSES)
|
if (def_char_to_monclass(opts[0]) != MAXMCLASSES)
|
||||||
clash = 1;
|
clash = opts[0] ? 1 : 0;
|
||||||
else if (opts[0] >= '1' && opts[0] <= '5')
|
else if (opts[0] >= '1' && opts[0] < WARNCOUNT + '0')
|
||||||
clash = 2;
|
clash = 2;
|
||||||
if (clash) {
|
if (clash) {
|
||||||
/* symbol chosen matches a used monster or warning
|
/* symbol chosen matches a used monster or warning
|
||||||
symbol which is not good - reject it*/
|
symbol which is not good - reject it */
|
||||||
config_error_add(
|
config_error_add(
|
||||||
"Badoption - boulder symbol '%c' conflicts with a %s symbol.",
|
"Badoption - boulder symbol '%s' would conflict with a %s symbol",
|
||||||
opts[0], (clash == 1) ? "monster" : "warning");
|
visctrl(opts[0]),
|
||||||
|
(clash == 1) ? "monster" : "warning");
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Override the default boulder symbol.
|
* Override the default boulder symbol.
|
||||||
*/
|
*/
|
||||||
iflags.bouldersym = (uchar) opts[0];
|
iflags.bouldersym = (uchar) opts[0];
|
||||||
}
|
/* for 'initial', update_bouldersym() is done in
|
||||||
/* for 'initial', update_bouldersym() is done in initoptions_finish(),
|
initoptions_finish(), after all symset options
|
||||||
after all symset options have been processed */
|
have been processed */
|
||||||
if (!initial) {
|
if (!initial) {
|
||||||
update_bouldersym();
|
update_bouldersym();
|
||||||
need_redraw = TRUE;
|
need_redraw = TRUE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return retval;
|
return retval;
|
||||||
#else
|
#else
|
||||||
|
|||||||
+90
-85
@@ -1,5 +1,5 @@
|
|||||||
# NetHack Makefile.
|
# NetHack Makefile.
|
||||||
# NetHack 3.6 Makefile.src $NHDT-Date: 1546137503 2018/12/30 02:38:23 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.66 $
|
# NetHack 3.6 Makefile.src $NHDT-Date: 1546220381 2018/12/31 01:39:41 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.67 $
|
||||||
# Copyright (c) 2018 by Pasi Kallinen
|
# Copyright (c) 2018 by Pasi Kallinen
|
||||||
# NetHack may be freely redistributed. See license for details.
|
# NetHack may be freely redistributed. See license for details.
|
||||||
|
|
||||||
@@ -154,6 +154,11 @@ SYSOBJ = ioctl.o unixmain.o unixtty.o unixunix.o unixres.o
|
|||||||
# Compile against system curses library, such as ncurses
|
# Compile against system curses library, such as ncurses
|
||||||
#CFLAGS = -O -I../include
|
#CFLAGS = -O -I../include
|
||||||
|
|
||||||
|
# files in ../win/X11 (relative to src) are passed $(CFLAGS) $(X11CFLAGS)
|
||||||
|
# and by default will find <X11/foo.h> in /usr/include/X11/foo.h;
|
||||||
|
# can be overridden via hints; post-10.7 OSX with XQuartz uses
|
||||||
|
# X11CFLAGS=-I/opt/X11/include to find <X11/foo.h> in /opt/X11/include/X11/foo.h
|
||||||
|
#X11CFLAGS=
|
||||||
|
|
||||||
# Only used for the Gnome interface.
|
# Only used for the Gnome interface.
|
||||||
# When including the Gnome interface, you need to include gnome specific
|
# When including the Gnome interface, you need to include gnome specific
|
||||||
@@ -739,155 +744,155 @@ $(HACK_H): ../include/hack.h $(CONFIG_H) ../include/lint.h ../include/align.h \
|
|||||||
touch $(HACK_H)
|
touch $(HACK_H)
|
||||||
#
|
#
|
||||||
tos.o: ../sys/atari/tos.c $(HACK_H) ../include/tcap.h
|
tos.o: ../sys/atari/tos.c $(HACK_H) ../include/tcap.h
|
||||||
$(CC) $(CFLAGS) -c ../sys/atari/tos.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/atari/tos.c
|
||||||
pcmain.o: ../sys/share/pcmain.c $(HACK_H) ../include/dlb.h
|
pcmain.o: ../sys/share/pcmain.c $(HACK_H) ../include/dlb.h
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/pcmain.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/pcmain.c
|
||||||
pcsys.o: ../sys/share/pcsys.c $(HACK_H)
|
pcsys.o: ../sys/share/pcsys.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/pcsys.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/pcsys.c
|
||||||
pctty.o: ../sys/share/pctty.c $(HACK_H)
|
pctty.o: ../sys/share/pctty.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/pctty.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/pctty.c
|
||||||
pcunix.o: ../sys/share/pcunix.c $(HACK_H)
|
pcunix.o: ../sys/share/pcunix.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/pcunix.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/pcunix.c
|
||||||
pmatchregex.o: ../sys/share/pmatchregex.c $(HACK_H)
|
pmatchregex.o: ../sys/share/pmatchregex.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/pmatchregex.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/pmatchregex.c
|
||||||
posixregex.o: ../sys/share/posixregex.c $(HACK_H)
|
posixregex.o: ../sys/share/posixregex.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/posixregex.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/posixregex.c
|
||||||
random.o: ../sys/share/random.c $(HACK_H)
|
random.o: ../sys/share/random.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/random.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/random.c
|
||||||
ioctl.o: ../sys/share/ioctl.c $(HACK_H) ../include/tcap.h
|
ioctl.o: ../sys/share/ioctl.c $(HACK_H) ../include/tcap.h
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/ioctl.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/ioctl.c
|
||||||
unixtty.o: ../sys/share/unixtty.c $(HACK_H)
|
unixtty.o: ../sys/share/unixtty.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/share/unixtty.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/share/unixtty.c
|
||||||
unixmain.o: ../sys/unix/unixmain.c $(HACK_H) ../include/dlb.h
|
unixmain.o: ../sys/unix/unixmain.c $(HACK_H) ../include/dlb.h
|
||||||
$(CC) $(CFLAGS) -c ../sys/unix/unixmain.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/unix/unixmain.c
|
||||||
unixunix.o: ../sys/unix/unixunix.c $(HACK_H)
|
unixunix.o: ../sys/unix/unixunix.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/unix/unixunix.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/unix/unixunix.c
|
||||||
unixres.o: ../sys/unix/unixres.c $(CONFIG_H)
|
unixres.o: ../sys/unix/unixres.c $(CONFIG_H)
|
||||||
$(CC) $(CFLAGS) -c ../sys/unix/unixres.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/unix/unixres.c
|
||||||
bemain.o: ../sys/be/bemain.c $(HACK_H) ../include/dlb.h
|
bemain.o: ../sys/be/bemain.c $(HACK_H) ../include/dlb.h
|
||||||
$(CC) $(CFLAGS) -c ../sys/be/bemain.c
|
$(CC) $(CFLAGS) -c -o $@ ../sys/be/bemain.c
|
||||||
getline.o: ../win/tty/getline.c $(HACK_H) ../include/func_tab.h
|
getline.o: ../win/tty/getline.c $(HACK_H) ../include/func_tab.h
|
||||||
$(CC) $(CFLAGS) -c ../win/tty/getline.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/tty/getline.c
|
||||||
termcap.o: ../win/tty/termcap.c $(HACK_H) ../include/tcap.h
|
termcap.o: ../win/tty/termcap.c $(HACK_H) ../include/tcap.h
|
||||||
$(CC) $(CFLAGS) -c ../win/tty/termcap.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/tty/termcap.c
|
||||||
topl.o: ../win/tty/topl.c $(HACK_H) ../include/tcap.h
|
topl.o: ../win/tty/topl.c $(HACK_H) ../include/tcap.h
|
||||||
$(CC) $(CFLAGS) -c ../win/tty/topl.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/tty/topl.c
|
||||||
wintty.o: ../win/tty/wintty.c $(HACK_H) ../include/dlb.h ../include/tcap.h
|
wintty.o: ../win/tty/wintty.c $(HACK_H) ../include/dlb.h ../include/tcap.h
|
||||||
$(CC) $(CFLAGS) -c ../win/tty/wintty.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/tty/wintty.c
|
||||||
cursmain.o: ../win/curses/cursmain.c $(HACK_H) ../include/patchlevel.h \
|
cursmain.o: ../win/curses/cursmain.c $(HACK_H) ../include/patchlevel.h \
|
||||||
../include/wincurs.h
|
../include/wincurs.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursmain.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursmain.c
|
||||||
curswins.o: ../win/curses/curswins.c $(HACK_H) ../include/wincurs.h \
|
curswins.o: ../win/curses/curswins.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/curswins.h
|
../win/curses/curswins.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/curswins.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/curswins.c
|
||||||
cursmisc.o: ../win/curses/cursmisc.c $(HACK_H) ../include/wincurs.h \
|
cursmisc.o: ../win/curses/cursmisc.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/cursmisc.h ../include/func_tab.h ../include/dlb.h
|
../win/curses/cursmisc.h ../include/func_tab.h ../include/dlb.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursmisc.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursmisc.c
|
||||||
cursdial.o: ../win/curses/cursdial.c $(HACK_H) ../include/wincurs.h \
|
cursdial.o: ../win/curses/cursdial.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/cursdial.h ../include/func_tab.h
|
../win/curses/cursdial.h ../include/func_tab.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursdial.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursdial.c
|
||||||
cursstat.o: ../win/curses/cursstat.c $(HACK_H) ../include/wincurs.h \
|
cursstat.o: ../win/curses/cursstat.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/cursstat.h
|
../win/curses/cursstat.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursstat.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursstat.c
|
||||||
cursinit.o: ../win/curses/cursinit.c $(HACK_H) ../include/wincurs.h \
|
cursinit.o: ../win/curses/cursinit.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/cursinit.h
|
../win/curses/cursinit.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursinit.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursinit.c
|
||||||
cursmesg.o: ../win/curses/cursmesg.c $(HACK_H) ../include/wincurs.h \
|
cursmesg.o: ../win/curses/cursmesg.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/cursmesg.h
|
../win/curses/cursmesg.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursmesg.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursmesg.c
|
||||||
cursinvt.o: ../win/curses/cursinvt.c $(HACK_H) ../include/wincurs.h \
|
cursinvt.o: ../win/curses/cursinvt.c $(HACK_H) ../include/wincurs.h \
|
||||||
../win/curses/cursinvt.h
|
../win/curses/cursinvt.h
|
||||||
$(CC) $(CFLAGS) -c ../win/curses/cursinvt.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/curses/cursinvt.c
|
||||||
Window.o: ../win/X11/Window.c ../include/xwindowp.h ../include/xwindow.h \
|
Window.o: ../win/X11/Window.c ../include/xwindowp.h ../include/xwindow.h \
|
||||||
$(CONFIG_H) ../include/lint.h
|
$(CONFIG_H) ../include/lint.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/Window.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/Window.c
|
||||||
dialogs.o: ../win/X11/dialogs.c $(CONFIG_H) ../include/lint.h
|
dialogs.o: ../win/X11/dialogs.c $(CONFIG_H) ../include/lint.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/dialogs.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/dialogs.c
|
||||||
winX.o: ../win/X11/winX.c $(HACK_H) ../include/winX.h ../include/dlb.h \
|
winX.o: ../win/X11/winX.c $(HACK_H) ../include/winX.h ../include/dlb.h \
|
||||||
../include/xwindow.h ../win/X11/nh72icon ../win/X11/nh56icon \
|
../include/xwindow.h ../win/X11/nh72icon ../win/X11/nh56icon \
|
||||||
../win/X11/nh32icon
|
../win/X11/nh32icon
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winX.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winX.c
|
||||||
winmap.o: ../win/X11/winmap.c ../include/xwindow.h $(HACK_H) ../include/dlb.h \
|
winmap.o: ../win/X11/winmap.c ../include/xwindow.h $(HACK_H) ../include/dlb.h \
|
||||||
../include/winX.h ../include/tile2x11.h
|
../include/winX.h ../include/tile2x11.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winmap.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winmap.c
|
||||||
winmenu.o: ../win/X11/winmenu.c $(HACK_H) ../include/winX.h
|
winmenu.o: ../win/X11/winmenu.c $(HACK_H) ../include/winX.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winmenu.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winmenu.c
|
||||||
winmesg.o: ../win/X11/winmesg.c ../include/xwindow.h $(HACK_H) ../include/winX.h
|
winmesg.o: ../win/X11/winmesg.c ../include/xwindow.h $(HACK_H) ../include/winX.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winmesg.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winmesg.c
|
||||||
winmisc.o: ../win/X11/winmisc.c $(HACK_H) ../include/func_tab.h \
|
winmisc.o: ../win/X11/winmisc.c $(HACK_H) ../include/func_tab.h \
|
||||||
../include/winX.h
|
../include/winX.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winmisc.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winmisc.c
|
||||||
winstat.o: ../win/X11/winstat.c $(HACK_H) ../include/winX.h ../include/xwindow.h
|
winstat.o: ../win/X11/winstat.c $(HACK_H) ../include/winX.h ../include/xwindow.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winstat.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winstat.c
|
||||||
wintext.o: ../win/X11/wintext.c $(HACK_H) ../include/winX.h ../include/xwindow.h
|
wintext.o: ../win/X11/wintext.c $(HACK_H) ../include/winX.h ../include/xwindow.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/wintext.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/wintext.c
|
||||||
winval.o: ../win/X11/winval.c $(HACK_H) ../include/winX.h
|
winval.o: ../win/X11/winval.c $(HACK_H) ../include/winX.h
|
||||||
$(CC) $(CFLAGS) -c ../win/X11/winval.c
|
$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ ../win/X11/winval.c
|
||||||
tile.o: tile.c $(HACK_H)
|
tile.o: tile.c $(HACK_H)
|
||||||
gnaskstr.o: ../win/gnome/gnaskstr.c ../win/gnome/gnaskstr.h \
|
gnaskstr.o: ../win/gnome/gnaskstr.c ../win/gnome/gnaskstr.h \
|
||||||
../win/gnome/gnmain.h
|
../win/gnome/gnmain.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnaskstr.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnaskstr.c
|
||||||
gnbind.o: ../win/gnome/gnbind.c ../win/gnome/gnbind.h ../win/gnome/gnmain.h \
|
gnbind.o: ../win/gnome/gnbind.c ../win/gnome/gnbind.h ../win/gnome/gnmain.h \
|
||||||
../win/gnome/gnmenu.h ../win/gnome/gnaskstr.h \
|
../win/gnome/gnmenu.h ../win/gnome/gnaskstr.h \
|
||||||
../win/gnome/gnyesno.h
|
../win/gnome/gnyesno.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnbind.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnbind.c
|
||||||
gnglyph.o: ../win/gnome/gnglyph.c ../win/gnome/gnglyph.h ../include/tile2x11.h
|
gnglyph.o: ../win/gnome/gnglyph.c ../win/gnome/gnglyph.h ../include/tile2x11.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnglyph.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnglyph.c
|
||||||
gnmain.o: ../win/gnome/gnmain.c ../win/gnome/gnmain.h ../win/gnome/gnsignal.h \
|
gnmain.o: ../win/gnome/gnmain.c ../win/gnome/gnmain.h ../win/gnome/gnsignal.h \
|
||||||
../win/gnome/gnbind.h ../win/gnome/gnopts.h $(HACK_H) \
|
../win/gnome/gnbind.h ../win/gnome/gnopts.h $(HACK_H) \
|
||||||
../include/date.h
|
../include/date.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnmain.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnmain.c
|
||||||
gnmap.o: ../win/gnome/gnmap.c ../win/gnome/gnmap.h ../win/gnome/gnglyph.h \
|
gnmap.o: ../win/gnome/gnmap.c ../win/gnome/gnmap.h ../win/gnome/gnglyph.h \
|
||||||
../win/gnome/gnsignal.h $(HACK_H)
|
../win/gnome/gnsignal.h $(HACK_H)
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnmap.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnmap.c
|
||||||
gnmenu.o: ../win/gnome/gnmenu.c ../win/gnome/gnmenu.h ../win/gnome/gnmain.h \
|
gnmenu.o: ../win/gnome/gnmenu.c ../win/gnome/gnmenu.h ../win/gnome/gnmain.h \
|
||||||
../win/gnome/gnbind.h ../include/func_tab.h
|
../win/gnome/gnbind.h ../include/func_tab.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnmenu.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnmenu.c
|
||||||
gnmesg.o: ../win/gnome/gnmesg.c ../win/gnome/gnmesg.h ../win/gnome/gnsignal.h
|
gnmesg.o: ../win/gnome/gnmesg.c ../win/gnome/gnmesg.h ../win/gnome/gnsignal.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnmesg.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnmesg.c
|
||||||
gnopts.o: ../win/gnome/gnopts.c ../win/gnome/gnopts.h ../win/gnome/gnglyph.h \
|
gnopts.o: ../win/gnome/gnopts.c ../win/gnome/gnopts.h ../win/gnome/gnglyph.h \
|
||||||
../win/gnome/gnmain.h ../win/gnome/gnmap.h $(HACK_H)
|
../win/gnome/gnmain.h ../win/gnome/gnmap.h $(HACK_H)
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnopts.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnopts.c
|
||||||
gnplayer.o: ../win/gnome/gnplayer.c ../win/gnome/gnplayer.h \
|
gnplayer.o: ../win/gnome/gnplayer.c ../win/gnome/gnplayer.h \
|
||||||
../win/gnome/gnmain.h $(HACK_H)
|
../win/gnome/gnmain.h $(HACK_H)
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnplayer.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnplayer.c
|
||||||
gnsignal.o: ../win/gnome/gnsignal.c ../win/gnome/gnsignal.h \
|
gnsignal.o: ../win/gnome/gnsignal.c ../win/gnome/gnsignal.h \
|
||||||
../win/gnome/gnmain.h
|
../win/gnome/gnmain.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnsignal.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnsignal.c
|
||||||
gnstatus.o: ../win/gnome/gnstatus.c ../win/gnome/gnstatus.h \
|
gnstatus.o: ../win/gnome/gnstatus.c ../win/gnome/gnstatus.h \
|
||||||
../win/gnome/gnsignal.h ../win/gnome/gn_xpms.h \
|
../win/gnome/gnsignal.h ../win/gnome/gn_xpms.h \
|
||||||
../win/gnome/gnomeprv.h
|
../win/gnome/gnomeprv.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnstatus.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnstatus.c
|
||||||
gntext.o: ../win/gnome/gntext.c ../win/gnome/gntext.h ../win/gnome/gnmain.h \
|
gntext.o: ../win/gnome/gntext.c ../win/gnome/gntext.h ../win/gnome/gnmain.h \
|
||||||
../win/gnome/gn_rip.h
|
../win/gnome/gn_rip.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gntext.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gntext.c
|
||||||
gnyesno.o: ../win/gnome/gnyesno.c ../win/gnome/gnbind.h ../win/gnome/gnyesno.h
|
gnyesno.o: ../win/gnome/gnyesno.c ../win/gnome/gnbind.h ../win/gnome/gnyesno.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnyesno.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnyesno.c
|
||||||
gnworn.o: ../win/gnome/gnworn.c ../win/gnome/gnworn.h ../win/gnome/gnglyph.h \
|
gnworn.o: ../win/gnome/gnworn.c ../win/gnome/gnworn.h ../win/gnome/gnglyph.h \
|
||||||
../win/gnome/gnsignal.h ../win/gnome/gnomeprv.h
|
../win/gnome/gnsignal.h ../win/gnome/gnomeprv.h
|
||||||
$(CC) $(CFLAGS) $(GNOMEINC) -c ../win/gnome/gnworn.c
|
$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ ../win/gnome/gnworn.c
|
||||||
wingem.o: ../win/gem/wingem.c $(HACK_H) ../include/func_tab.h ../include/dlb.h \
|
wingem.o: ../win/gem/wingem.c $(HACK_H) ../include/func_tab.h ../include/dlb.h \
|
||||||
../include/patchlevel.h ../include/wingem.h
|
../include/patchlevel.h ../include/wingem.h
|
||||||
$(CC) $(CFLAGS) -c ../win/gem/wingem.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/gem/wingem.c
|
||||||
wingem1.o: ../win/gem/wingem1.c ../include/gem_rsc.h ../include/load_img.h \
|
wingem1.o: ../win/gem/wingem1.c ../include/gem_rsc.h ../include/load_img.h \
|
||||||
../include/gr_rect.h ../include/wintype.h ../include/wingem.h
|
../include/gr_rect.h ../include/wintype.h ../include/wingem.h
|
||||||
$(CC) $(CFLAGS) -c ../win/gem/wingem1.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/gem/wingem1.c
|
||||||
load_img.o: ../win/gem/load_img.c ../include/load_img.h
|
load_img.o: ../win/gem/load_img.c ../include/load_img.h
|
||||||
$(CC) $(CFLAGS) -c ../win/gem/load_img.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/gem/load_img.c
|
||||||
gr_rect.o: ../win/gem/gr_rect.c ../include/gr_rect.h
|
gr_rect.o: ../win/gem/gr_rect.c ../include/gr_rect.h
|
||||||
$(CC) $(CFLAGS) -c ../win/gem/gr_rect.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/gem/gr_rect.c
|
||||||
tile.o: tile.c $(HACK_H)
|
tile.o: tile.c $(HACK_H)
|
||||||
cppregex.o: ../sys/share/cppregex.cpp
|
cppregex.o: ../sys/share/cppregex.cpp
|
||||||
$(CXX) $(CXXFLAGS) -c ../sys/share/cppregex.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../sys/share/cppregex.cpp
|
||||||
qt_win.o: ../win/Qt/qt_win.cpp $(HACK_H) ../include/func_tab.h \
|
qt_win.o: ../win/Qt/qt_win.cpp $(HACK_H) ../include/func_tab.h \
|
||||||
../include/dlb.h ../include/patchlevel.h ../include/tile2x11.h \
|
../include/dlb.h ../include/patchlevel.h ../include/tile2x11.h \
|
||||||
../include/qt_win.h ../include/qt_clust.h ../include/qt_kde0.h \
|
../include/qt_win.h ../include/qt_clust.h ../include/qt_kde0.h \
|
||||||
../include/qt_xpms.h qt_win.moc qt_kde0.moc qttableview.moc
|
../include/qt_xpms.h qt_win.moc qt_kde0.moc qttableview.moc
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt/qt_win.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt/qt_win.cpp
|
||||||
qt_clust.o: ../win/Qt/qt_clust.cpp ../include/qt_clust.h
|
qt_clust.o: ../win/Qt/qt_clust.cpp ../include/qt_clust.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt/qt_clust.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt/qt_clust.cpp
|
||||||
qttableview.o: ../win/Qt/qttableview.cpp ../include/qttableview.h
|
qttableview.o: ../win/Qt/qttableview.cpp ../include/qttableview.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt/qttableview.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt/qttableview.cpp
|
||||||
qt4bind.o: ../win/Qt4/qt4bind.cpp $(HACK_H) ../win/Qt4/qt4bind.h \
|
qt4bind.o: ../win/Qt4/qt4bind.cpp $(HACK_H) ../win/Qt4/qt4bind.h \
|
||||||
../win/Qt4/qt4click.h ../win/Qt4/qt4delay.h \
|
../win/Qt4/qt4click.h ../win/Qt4/qt4delay.h \
|
||||||
../win/Qt4/qt4xcmd.h ../win/Qt4/qt4key.h ../win/Qt4/qt4map.h \
|
../win/Qt4/qt4xcmd.h ../win/Qt4/qt4key.h ../win/Qt4/qt4map.h \
|
||||||
@@ -895,82 +900,82 @@ qt4bind.o: ../win/Qt4/qt4bind.cpp $(HACK_H) ../win/Qt4/qt4bind.h \
|
|||||||
../win/Qt4/qt4svsel.h ../win/Qt4/qt4set.h ../win/Qt4/qt4stat.h \
|
../win/Qt4/qt4svsel.h ../win/Qt4/qt4set.h ../win/Qt4/qt4stat.h \
|
||||||
../win/Qt4/qt4streq.h ../win/Qt4/qt4yndlg.h \
|
../win/Qt4/qt4streq.h ../win/Qt4/qt4yndlg.h \
|
||||||
../win/Qt4/qt4str.h ../include/dlb.h
|
../win/Qt4/qt4str.h ../include/dlb.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4bind.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4bind.cpp
|
||||||
qt4click.o: ../win/Qt4/qt4click.cpp $(HACK_H) ../win/Qt4/qt4click.h
|
qt4click.o: ../win/Qt4/qt4click.cpp $(HACK_H) ../win/Qt4/qt4click.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4click.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4click.cpp
|
||||||
qt4clust.o: ../win/Qt4/qt4clust.cpp ../win/Qt4/qt4clust.h
|
qt4clust.o: ../win/Qt4/qt4clust.cpp ../win/Qt4/qt4clust.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4clust.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4clust.cpp
|
||||||
qt4delay.o: ../win/Qt4/qt4delay.cpp $(HACK_H) ../win/Qt4/qt4delay.h
|
qt4delay.o: ../win/Qt4/qt4delay.cpp $(HACK_H) ../win/Qt4/qt4delay.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4delay.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4delay.cpp
|
||||||
qt4glyph.o: ../win/Qt4/qt4glyph.cpp $(HACK_H) ../include/tile2x11.h \
|
qt4glyph.o: ../win/Qt4/qt4glyph.cpp $(HACK_H) ../include/tile2x11.h \
|
||||||
../win/Qt4/qt4glyph.h ../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4glyph.h ../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4glyph.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4glyph.cpp
|
||||||
qt4icon.o: ../win/Qt4/qt4icon.cpp $(HACK_H) ../win/Qt4/qt4icon.h
|
qt4icon.o: ../win/Qt4/qt4icon.cpp $(HACK_H) ../win/Qt4/qt4icon.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4icon.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4icon.cpp
|
||||||
qt4inv.o: ../win/Qt4/qt4inv.cpp $(HACK_H) ../win/Qt4/qt4inv.h \
|
qt4inv.o: ../win/Qt4/qt4inv.cpp $(HACK_H) ../win/Qt4/qt4inv.h \
|
||||||
../win/Qt4/qt4glyph.h ../win/Qt4/qt4set.h
|
../win/Qt4/qt4glyph.h ../win/Qt4/qt4set.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4inv.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4inv.cpp
|
||||||
qt4key.o: ../win/Qt4/qt4key.cpp $(HACK_H) ../win/Qt4/qt4key.h
|
qt4key.o: ../win/Qt4/qt4key.cpp $(HACK_H) ../win/Qt4/qt4key.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4key.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4key.cpp
|
||||||
qt4line.o: ../win/Qt4/qt4line.cpp $(HACK_H) ../win/Qt4/qt4line.h
|
qt4line.o: ../win/Qt4/qt4line.cpp $(HACK_H) ../win/Qt4/qt4line.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4line.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4line.cpp
|
||||||
qt4main.o: ../win/Qt4/qt4main.cpp $(HACK_H) ../include/patchlevel.h \
|
qt4main.o: ../win/Qt4/qt4main.cpp $(HACK_H) ../include/patchlevel.h \
|
||||||
../win/Qt4/qt4main.h qt4main.moc ../win/Qt4/qt4bind.h \
|
../win/Qt4/qt4main.h qt4main.moc ../win/Qt4/qt4bind.h \
|
||||||
../win/Qt4/qt4glyph.h ../win/Qt4/qt4inv.h ../win/Qt4/qt4key.h \
|
../win/Qt4/qt4glyph.h ../win/Qt4/qt4inv.h ../win/Qt4/qt4key.h \
|
||||||
../win/Qt4/qt4map.h ../win/Qt4/qt4msg.h ../win/Qt4/qt4set.h \
|
../win/Qt4/qt4map.h ../win/Qt4/qt4msg.h ../win/Qt4/qt4set.h \
|
||||||
../win/Qt4/qt4stat.h ../win/Qt4/qt4str.h qt4kde0.moc
|
../win/Qt4/qt4stat.h ../win/Qt4/qt4str.h qt4kde0.moc
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4main.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4main.cpp
|
||||||
qt4map.o: ../win/Qt4/qt4map.cpp $(HACK_H) ../win/Qt4/qt4map.h qt4map.moc \
|
qt4map.o: ../win/Qt4/qt4map.cpp $(HACK_H) ../win/Qt4/qt4map.h qt4map.moc \
|
||||||
../win/Qt4/qt4click.h ../win/Qt4/qt4glyph.h \
|
../win/Qt4/qt4click.h ../win/Qt4/qt4glyph.h \
|
||||||
../include/qt_xpms.h ../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
../include/qt_xpms.h ../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4map.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4map.cpp
|
||||||
qt4menu.o: ../win/Qt4/qt4menu.cpp $(HACK_H) ../win/Qt4/qt4menu.h qt4menu.moc \
|
qt4menu.o: ../win/Qt4/qt4menu.cpp $(HACK_H) ../win/Qt4/qt4menu.h qt4menu.moc \
|
||||||
../win/Qt4/qt4glyph.h ../win/Qt4/qt4set.h \
|
../win/Qt4/qt4glyph.h ../win/Qt4/qt4set.h \
|
||||||
../win/Qt4/qt4streq.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4streq.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4menu.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4menu.cpp
|
||||||
qt4msg.o: ../win/Qt4/qt4msg.cpp $(HACK_H) ../win/Qt4/qt4msg.h qt4msg.moc \
|
qt4msg.o: ../win/Qt4/qt4msg.cpp $(HACK_H) ../win/Qt4/qt4msg.h qt4msg.moc \
|
||||||
../win/Qt4/qt4map.h ../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4map.h ../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4msg.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4msg.cpp
|
||||||
qt4plsel.o: ../win/Qt4/qt4plsel.cpp $(HACK_H) ../win/Qt4/qt4plsel.h \
|
qt4plsel.o: ../win/Qt4/qt4plsel.cpp $(HACK_H) ../win/Qt4/qt4plsel.h \
|
||||||
qt4plsel.moc ../win/Qt4/qt4bind.h ../win/Qt4/qt4glyph.h \
|
qt4plsel.moc ../win/Qt4/qt4bind.h ../win/Qt4/qt4glyph.h \
|
||||||
../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4plsel.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4plsel.cpp
|
||||||
qt4rip.o: ../win/Qt4/qt4rip.cpp $(HACK_H) ../win/Qt4/qt4rip.h \
|
qt4rip.o: ../win/Qt4/qt4rip.cpp $(HACK_H) ../win/Qt4/qt4rip.h \
|
||||||
../win/Qt4/qt4bind.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4bind.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4rip.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4rip.cpp
|
||||||
qt4set.o: ../win/Qt4/qt4set.cpp $(HACK_H) ../win/Qt4/qt4set.h qt4set.moc \
|
qt4set.o: ../win/Qt4/qt4set.cpp $(HACK_H) ../win/Qt4/qt4set.h qt4set.moc \
|
||||||
../win/Qt4/qt4glyph.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4glyph.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4set.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4set.cpp
|
||||||
qt4stat.o: ../win/Qt4/qt4stat.cpp $(HACK_H) ../win/Qt4/qt4stat.h qt4stat.moc \
|
qt4stat.o: ../win/Qt4/qt4stat.cpp $(HACK_H) ../win/Qt4/qt4stat.h qt4stat.moc \
|
||||||
../win/Qt4/qt4set.h ../win/Qt4/qt4str.h ../include/qt_xpms.h
|
../win/Qt4/qt4set.h ../win/Qt4/qt4str.h ../include/qt_xpms.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4stat.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4stat.cpp
|
||||||
qt4str.o: ../win/Qt4/qt4str.cpp ../win/Qt4/qt4str.h
|
qt4str.o: ../win/Qt4/qt4str.cpp ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4str.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4str.cpp
|
||||||
qt4streq.o: ../win/Qt4/qt4streq.cpp $(HACK_H) ../win/Qt4/qt4streq.h \
|
qt4streq.o: ../win/Qt4/qt4streq.cpp $(HACK_H) ../win/Qt4/qt4streq.h \
|
||||||
../win/Qt4/qt4str.h
|
../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4streq.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4streq.cpp
|
||||||
qt4svsel.o: ../win/Qt4/qt4svsel.cpp $(HACK_H) ../win/Qt4/qt4svsel.h \
|
qt4svsel.o: ../win/Qt4/qt4svsel.cpp $(HACK_H) ../win/Qt4/qt4svsel.h \
|
||||||
../win/Qt4/qt4bind.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4bind.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4svsel.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4svsel.cpp
|
||||||
qt4win.o: ../win/Qt4/qt4win.cpp $(HACK_H) ../win/Qt4/qt4win.h \
|
qt4win.o: ../win/Qt4/qt4win.cpp $(HACK_H) ../win/Qt4/qt4win.h \
|
||||||
../win/Qt4/qt4bind.h ../win/Qt4/qt4click.h \
|
../win/Qt4/qt4bind.h ../win/Qt4/qt4click.h \
|
||||||
../win/Qt4/qt4glyph.h ../win/Qt4/qt4inv.h ../win/Qt4/qt4key.h \
|
../win/Qt4/qt4glyph.h ../win/Qt4/qt4inv.h ../win/Qt4/qt4key.h \
|
||||||
../win/Qt4/qt4icon.h ../win/Qt4/qt4map.h ../win/Qt4/qt4menu.h \
|
../win/Qt4/qt4icon.h ../win/Qt4/qt4map.h ../win/Qt4/qt4menu.h \
|
||||||
../win/Qt4/qt4msg.h ../win/Qt4/qt4set.h ../win/Qt4/qt4clust.h
|
../win/Qt4/qt4msg.h ../win/Qt4/qt4set.h ../win/Qt4/qt4clust.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4win.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4win.cpp
|
||||||
qt4xcmd.o: ../win/Qt4/qt4xcmd.cpp $(HACK_H) ../include/func_tab.h \
|
qt4xcmd.o: ../win/Qt4/qt4xcmd.cpp $(HACK_H) ../include/func_tab.h \
|
||||||
../win/Qt4/qt4xcmd.h qt4xcmd.moc ../win/Qt4/qt4bind.h \
|
../win/Qt4/qt4xcmd.h qt4xcmd.moc ../win/Qt4/qt4bind.h \
|
||||||
../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
../win/Qt4/qt4set.h ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4xcmd.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4xcmd.cpp
|
||||||
qt4yndlg.o: ../win/Qt4/qt4yndlg.cpp $(HACK_H) ../win/Qt4/qt4yndlg.h \
|
qt4yndlg.o: ../win/Qt4/qt4yndlg.cpp $(HACK_H) ../win/Qt4/qt4yndlg.h \
|
||||||
qt4yndlg.moc ../win/Qt4/qt4str.h
|
qt4yndlg.moc ../win/Qt4/qt4str.h
|
||||||
$(CXX) $(CXXFLAGS) -c ../win/Qt4/qt4yndlg.cpp
|
$(CXX) $(CXXFLAGS) -c -o $@ ../win/Qt4/qt4yndlg.cpp
|
||||||
wc_chainin.o: ../win/chain/wc_chainin.c $(HACK_H)
|
wc_chainin.o: ../win/chain/wc_chainin.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../win/chain/wc_chainin.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/chain/wc_chainin.c
|
||||||
wc_chainout.o: ../win/chain/wc_chainout.c $(HACK_H)
|
wc_chainout.o: ../win/chain/wc_chainout.c $(HACK_H)
|
||||||
$(CC) $(CFLAGS) -c ../win/chain/wc_chainout.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/chain/wc_chainout.c
|
||||||
wc_trace.o: ../win/chain/wc_trace.c $(HACK_H) ../include/func_tab.h
|
wc_trace.o: ../win/chain/wc_trace.c $(HACK_H) ../include/func_tab.h
|
||||||
$(CC) $(CFLAGS) -c ../win/chain/wc_trace.c
|
$(CC) $(CFLAGS) -c -o $@ ../win/chain/wc_trace.c
|
||||||
vis_tab.o: vis_tab.c $(CONFIG_H) ../include/vis_tab.h
|
vis_tab.o: vis_tab.c $(CONFIG_H) ../include/vis_tab.h
|
||||||
allmain.o: allmain.c $(HACK_H)
|
allmain.o: allmain.c $(HACK_H)
|
||||||
alloc.o: alloc.c $(CONFIG_H)
|
alloc.o: alloc.c $(CONFIG_H)
|
||||||
|
|||||||
+6
-4
@@ -1,6 +1,6 @@
|
|||||||
# depend.awk -- awk script used to construct makefile dependencies
|
# depend.awk -- awk script used to construct makefile dependencies
|
||||||
# for nethack's source files (`make depend' support for Makefile.src).
|
# for nethack's source files (`make depend' support for Makefile.src).
|
||||||
# $NHDT-Date: 1543447376 2018/11/28 23:22:56 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.7 $
|
# $NHDT-Date: 1546220373 2018/12/31 01:39:33 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.8 $
|
||||||
#
|
#
|
||||||
# usage:
|
# usage:
|
||||||
# cd src ; nawk -f depend.awk ../include/*.h list-of-.c/.cpp-files
|
# cd src ; nawk -f depend.awk ../include/*.h list-of-.c/.cpp-files
|
||||||
@@ -121,11 +121,13 @@ function format_dep(target, source, n, i, list)
|
|||||||
source = list[2]
|
source = list[2]
|
||||||
if (source ~ /\// && substr(source, 1, 11) != "../include/") {
|
if (source ~ /\// && substr(source, 1, 11) != "../include/") {
|
||||||
if (source ~ /\.cpp$/ )
|
if (source ~ /\.cpp$/ )
|
||||||
print "\t$(CXX) $(CXXFLAGS) -c " source
|
print "\t$(CXX) $(CXXFLAGS) -c -o $@ " source
|
||||||
|
else if (source ~ /\/X11\//) # "../win/X11/foo.c"
|
||||||
|
print "\t$(CC) $(CFLAGS) $(X11CFLAGS) -c -o $@ " source
|
||||||
else if (source ~ /\/gnome\//) # "../win/gnome/foo.c"
|
else if (source ~ /\/gnome\//) # "../win/gnome/foo.c"
|
||||||
print "\t$(CC) $(CFLAGS) $(GNOMEINC) -c " source
|
print "\t$(CC) $(CFLAGS) $(GNOMEINC) -c -o $@ " source
|
||||||
else
|
else
|
||||||
print "\t$(CC) $(CFLAGS) -c " source
|
print "\t$(CC) $(CFLAGS) -c -o $@ " source
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
#
|
#
|
||||||
# NetHack 3.6 macosx10.11 $NHDT-Date: 1546082880 2018/12/29 11:28:00 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.50 $
|
# NetHack 3.6 macosx10.11 $NHDT-Date: 1546220383 2018/12/31 01:39:43 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.51 $
|
||||||
# Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015.
|
# Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015.
|
||||||
# NetHack may be freely redistributed. See license for details.
|
# NetHack may be freely redistributed. See license for details.
|
||||||
#
|
#
|
||||||
#-PRE
|
#-PRE
|
||||||
# Mac OS X (Darwin) hints file
|
# Mac OS X (Darwin) hints file
|
||||||
# This is for Mac OS X 10.10 or later, and has been tested on 10.11
|
# This is for Mac OS X 10.10 or later, and has been tested on 10.11
|
||||||
# (El Capitan). If this doesn't work for some other
|
# (El Capitan) and 10.13. If this doesn't work for some other
|
||||||
# version of Mac OS X, make a new file for that OS, don't change this one.
|
# version of Mac OS X, make a new file for that OS, don't change this one.
|
||||||
# And let us know about it.
|
# And let us know about it.
|
||||||
# Useful info: http://www.opensource.apple.com/darwinsource/index.html
|
# Useful info: http://www.opensource.apple.com/darwinsource/index.html
|
||||||
@@ -109,9 +109,11 @@ ifdef WANT_WIN_X11
|
|||||||
WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11
|
WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11
|
||||||
VARDATND = x11tiles NetHack.ad pet_mark.xbm pilemark.xbm
|
VARDATND = x11tiles NetHack.ad pet_mark.xbm pilemark.xbm
|
||||||
POSTINSTALL+= bdftopcf win/X11/nh10.bdf > $(HACKDIR)/nh10.pcf; (cd $(HACKDIR); mkfontdir);
|
POSTINSTALL+= bdftopcf win/X11/nh10.bdf > $(HACKDIR)/nh10.pcf; (cd $(HACKDIR); mkfontdir);
|
||||||
CFLAGS += -DX11_GRAPHICS -I/opt/X11/include
|
# separate from CFLAGS so that we don't pass it to every file
|
||||||
|
X11CFLAGS = -I/opt/X11/include
|
||||||
|
CFLAGS += -DX11_GRAPHICS
|
||||||
# avoid repeated complaints about _X_NONNULL(args...) in <X11/Xfuncproto.h>
|
# avoid repeated complaints about _X_NONNULL(args...) in <X11/Xfuncproto.h>
|
||||||
CFLAGS += -Wno-variadic-macros
|
X11CFLAGS += -Wno-variadic-macros
|
||||||
ifdef USE_XPM
|
ifdef USE_XPM
|
||||||
CFLAGS += -DUSE_XPM
|
CFLAGS += -DUSE_XPM
|
||||||
WINX11LIB += -lXpm
|
WINX11LIB += -lXpm
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
#
|
#
|
||||||
# NetHack 3.6 macosx10.11 $NHDT-Date: 1546082881 2018/12/29 11:28:01 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.55 $
|
# NetHack 3.6 macosx10.11 $NHDT-Date: 1546220384 2018/12/31 01:39:44 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.56 $
|
||||||
# Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015.
|
# Copyright (c) Kenneth Lorber, Kensington, Maryland, 2015.
|
||||||
# NetHack may be freely redistributed. See license for details.
|
# NetHack may be freely redistributed. See license for details.
|
||||||
#
|
#
|
||||||
#-PRE
|
#-PRE
|
||||||
# Mac OS X (Darwin) hints file
|
# Mac OS X (Darwin) hints file
|
||||||
# This is for Mac OS X 10.10 or later, and has been tested on 10.11
|
# This is for Mac OS X 10.14 or later.
|
||||||
# (El Capitan). If this doesn't work for some other
|
# If this doesn't work for some other
|
||||||
# version of Mac OS X, make a new file for that OS, don't change this one.
|
# version of Mac OS X, make a new file for that OS, don't change this one.
|
||||||
# And let us know about it.
|
# And let us know about it.
|
||||||
# Useful info: http://www.opensource.apple.com/darwinsource/index.html
|
# Useful info: http://www.opensource.apple.com/darwinsource/index.html
|
||||||
@@ -109,9 +109,11 @@ ifdef WANT_WIN_X11
|
|||||||
WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11
|
WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11
|
||||||
VARDATND = x11tiles NetHack.ad pet_mark.xbm pilemark.xbm
|
VARDATND = x11tiles NetHack.ad pet_mark.xbm pilemark.xbm
|
||||||
POSTINSTALL+= bdftopcf win/X11/nh10.bdf > $(HACKDIR)/nh10.pcf; (cd $(HACKDIR); mkfontdir);
|
POSTINSTALL+= bdftopcf win/X11/nh10.bdf > $(HACKDIR)/nh10.pcf; (cd $(HACKDIR); mkfontdir);
|
||||||
CFLAGS += -DX11_GRAPHICS -I/opt/X11/include
|
# separate from CFLAGS so that we don't pass it to every file
|
||||||
|
X11CFLAGS = -I/opt/X11/include
|
||||||
|
CFLAGS += -DX11_GRAPHICS
|
||||||
# avoid repeated complaints about _X_NONNULL(args...) in <X11/Xfuncproto.h>
|
# avoid repeated complaints about _X_NONNULL(args...) in <X11/Xfuncproto.h>
|
||||||
CFLAGS += -Wno-variadic-macros
|
X11CFLAGS += -Wno-variadic-macros
|
||||||
ifdef USE_XPM
|
ifdef USE_XPM
|
||||||
CFLAGS += -DUSE_XPM
|
CFLAGS += -DUSE_XPM
|
||||||
WINX11LIB += -lXpm
|
WINX11LIB += -lXpm
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# NetHack 3.6 macosx10.8 $NHDT-Date: 1546082883 2018/12/29 11:28:03 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.35 $
|
# NetHack 3.6 macosx10.8 $NHDT-Date: 1546220385 2018/12/31 01:39:45 $ $NHDT-Branch: NetHack-3.6.2-beta01 $:$NHDT-Revision: 1.36 $
|
||||||
# Copyright (c) Kenneth Lorber, Kensington, Maryland, 2009.
|
# Copyright (c) Kenneth Lorber, Kensington, Maryland, 2009.
|
||||||
# NetHack may be freely redistributed. See license for details.
|
# NetHack may be freely redistributed. See license for details.
|
||||||
#
|
#
|
||||||
@@ -104,9 +104,11 @@ ifdef WANT_WIN_X11
|
|||||||
WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11
|
WINX11LIB = -lXaw -lXmu -lXext -lXt -lX11
|
||||||
VARDATND = x11tiles NetHack.ad pet_mark.xbm pilemark.xbm
|
VARDATND = x11tiles NetHack.ad pet_mark.xbm pilemark.xbm
|
||||||
POSTINSTALL+= bdftopcf win/X11/nh10.bdf > $(INSTDIR)/nh10.pcf; (cd $(INSTDIR); mkfontdir);
|
POSTINSTALL+= bdftopcf win/X11/nh10.bdf > $(INSTDIR)/nh10.pcf; (cd $(INSTDIR); mkfontdir);
|
||||||
CFLAGS += -DX11_GRAPHICS -I/opt/X11/include
|
# separate from CFLAGS so that we don't pass it to every file
|
||||||
|
X11CFLAGS = -I/opt/X11/include
|
||||||
|
CFLAGS += -DX11_GRAPHICS
|
||||||
# avoid repeated complaints about _X_NONNULL(args...) in <X11/Xfuncproto.h>
|
# avoid repeated complaints about _X_NONNULL(args...) in <X11/Xfuncproto.h>
|
||||||
CFLAGS += -Wno-variadic-macros
|
X11CFLAGS += -Wno-variadic-macros
|
||||||
ifdef USE_XPM
|
ifdef USE_XPM
|
||||||
CFLAGS += -DUSE_XPM
|
CFLAGS += -DUSE_XPM
|
||||||
WINX11LIB += -lXpm
|
WINX11LIB += -lXpm
|
||||||
|
|||||||
Reference in New Issue
Block a user