rain and worm aren't building because of the floating point issues. :-/

This commit is contained in:
William McBrine
2006-02-16 07:31:19 +00:00
parent f78ce3db72
commit e93d4f8643

View File

@@ -52,8 +52,7 @@ LIBCURSES = pdcurses.lib
LIBPANEL = panel.lib
PDCLIBS = $(LIBCURSES) $(LIBPANEL)
DEMOS = testcurs.exe newdemo.exe xmas.exe tuidemo.exe \
firework.exe ptest.exe rain.exe worm.exe
DEMOS = testcurs.exe newdemo.exe xmas.exe tuidemo.exe firework.exe ptest.exe
################################################################################
all: $(PDCLIBS) $(DEMOS)
@@ -290,18 +289,12 @@ newdemo.exe: newdemo.obj $(LIBCURSES)
ptest.exe: ptest.obj $(LIBCURSES) $(LIBPANEL)
$(CC) -m$(MODEL) -e$@ $**
rain.exe: rain.obj $(LIBCURSES)
$(CC) -m$(MODEL) -e$@ $**
testcurs.exe: testcurs.obj $(LIBCURSES)
$(CC) -m$(MODEL) -e$@ $**
tuidemo.exe: tuidemo.obj tui.obj $(LIBCURSES)
$(CC) -m$(MODEL) -e$@ $**
worm.exe: worm.obj $(LIBCURSES)
$(CC) -m$(MODEL) -e$@ $**
xmas.exe: xmas.obj $(LIBCURSES)
$(CC) -m$(MODEL) -e$@ $**
@@ -315,9 +308,6 @@ newdemo.obj: $(demodir)\newdemo.c $(PDCURSES_CURSES_H)
ptest.obj: $(demodir)\ptest.c $(PANEL_HEADER) $(PDCURSES_CURSES_H)
$(CC) $(CCFLAGS) -o$@ $(demodir)\ptest.c
rain.obj: $(demodir)\rain.c $(PDCURSES_CURSES_H)
$(CC) $(CCFLAGS) -o$@ $(demodir)\rain.c
testcurs.obj: $(demodir)\testcurs.c $(PDCURSES_CURSES_H)
$(CC) $(CCFLAGS) -o$@ $(demodir)\testcurs.c
@@ -327,9 +317,6 @@ tui.obj: $(demodir)\tui.c $(demodir)\tui.h $(PDCURSES_CURSES_H)
tuidemo.obj: $(demodir)\tuidemo.c $(PDCURSES_CURSES_H)
$(CC) $(CCFLAGS) -I$(demodir) -o$@ $(demodir)\tuidemo.c
worm.obj: $(demodir)\worm.c $(PDCURSES_CURSES_H)
$(CC) $(CCFLAGS) -o$@ $(demodir)\worm.c
xmas.obj: $(demodir)\xmas.c $(PDCURSES_CURSES_H)
$(CC) $(CCFLAGS) -o$@ $(demodir)\xmas.c