Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion 2004/arachnid/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ include ../../var.mk
#
CSILENCE= -Wno-char-subscripts -Wno-extra-semi -Wno-implicit-int \
-Wno-return-type -Wno-unused-parameter -Wno-unused-value \
-Wno-misleading-indentation -Wno-pedantic
-Wno-misleading-indentation -Wno-pedantic -Wno-return-mismatch

# Attempt to silence unknown warning option
#
Expand Down Expand Up @@ -78,6 +78,16 @@ CFLAGS= ${CSTD} ${CWARN} ${ARCH} ${CDEFINE} ${CINCLUDE} ${OPT}
#
LDFLAGS= -lncurses

OS != uname
ifeq "${OS}" "NetBSD"
CDEFINE += -Dacs_map=_acs_map
CINCLUDE += -include curses.h
LDFLAGS= -lcurses
else
CINCLUDE += -include ncurses.h
LDFLAGS= -lncurses
endif

# C compiler to use
#
CC= cc
Expand Down
2 changes: 1 addition & 1 deletion 2004/arachnid/arachnid.alt.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <ncurses.h>/*****************************************************/
/*************************************************************************/
int m[256 ] [ 256 ],a
,b ;;; ;;; WINDOW*w; char*l="" "\176qxl" "q" "q" "k" "w\
xm" "x" "t" "j" "v" "u" "n" ,Q[
Expand Down
2 changes: 1 addition & 1 deletion 2004/arachnid/arachnid.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include <ncurses.h>/*****************************************************/
/*************************************************************************/
int m[256 ] [ 256 ],a
,b ;;; ;;; WINDOW*w; char*l="" "\176qxl" "q" "q" "k" "w\
xm" "x" "t" "j" "v" "u" "n" ,Q[
Expand Down