summaryrefslogtreecommitdiffstats
path: root/sail
diff options
context:
space:
mode:
Diffstat (limited to 'sail')
-rw-r--r--sail/Makefile21
-rw-r--r--sail/array.h8
2 files changed, 22 insertions, 7 deletions
diff --git a/sail/Makefile b/sail/Makefile
index 44eacc60..6d50ae19 100644
--- a/sail/Makefile
+++ b/sail/Makefile
@@ -6,12 +6,19 @@ SRCS= main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \
dr_main.c dr_1.c dr_2.c dr_3.c dr_4.c dr_5.c lo_main.c \
assorted.c game.c globals.c misc.c parties.c sync.c array.c version.c
MAN= sail.6
-DPADD= ${LIBCURSES} ${LIBTERMINFO}
-LDADD= -lcurses -lterminfo
-HIDEGAME=hidegame
-SETGIDGAME=yes
-COPTS.pl_7.c+= -Wno-format-nonliteral
-COPTS.sync.c+= -Wno-format-nonliteral
+all: $(PROG)
-.include <bsd.prog.mk>
+$(PROG): $(SRCS)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw
+ $(STRIP) $(PROG)
+
+install: $(PROG) $(MAN)
+ $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/usr/games/$(PROG)
+ $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/usr/share/man/man6/$(MAN)
+ $(GINSTALL) -d $(DESTDIR)/var/games
+
+clean:
+ rm -f $(CLEANFILES) $(PROG)
+
+.PHONY: all clean install
diff --git a/sail/array.h b/sail/array.h
index d6545df0..2a564244 100644
--- a/sail/array.h
+++ b/sail/array.h
@@ -30,6 +30,14 @@
#ifndef ARRAY_H
#define ARRAY_H
+#if defined(__GNUC__) && defined(__GNUC_STDC_INLINE__)
+#define __c99inline extern __attribute__((__gnu_inline__)) __inline
+#elif defined(__GNUC__)
+#define __c99inline extern __inline
+#elif defined(__STDC_VERSION__) || defined(__lint__)
+#define __c99inline __inline
+#endif
+
#define ARRAYS_CHECKED
#ifdef ARRAYS_CHECKED