X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/77e3814f0c0e3dea4d0032e25666f77e6f83bfff..1a83ac917a1f82c20c8bd661975910fd206c87cd:/sail/Makefile diff --git a/sail/Makefile b/sail/Makefile index 59d7c560..4eac58be 100644 --- a/sail/Makefile +++ b/sail/Makefile @@ -1,12 +1,24 @@ -# @(#)Makefile 5.10 (Berkeley) 5/11/90 +# $NetBSD: Makefile,v 1.18 2011/08/25 15:50:45 joerg Exp $ +# @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= sail 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 version.c -MAN6= sail.0 -DPADD= ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT} -LDADD= -lcurses -ltermlib -lcompat -HIDEGAME=hidegame + assorted.c game.c globals.c misc.c parties.c sync.c array.c version.c +MAN= sail.6 -.include +all: $(PROG) + +$(PROG): $(SRCS) + $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(SRCS) -lncursesw -I$(ROOT) + $(STRIP) $(PROG) + +install: $(PROG) $(MAN) + $(GINSTALL) -Dm2755 $(PROG) $(DESTDIR)/$(PREFIX)/games/$(PROG) + $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/$(MAN) + $(GINSTALL) -d $(DESTDIR)/$(LOCALSTATEDIR)/games + +clean: + rm -f $(CLEANFILES) $(PROG) + +.PHONY: all clean install