X-Git-Url: https://git.cameronkatri.com/bsdgames-darwin.git/blobdiff_plain/d699982161fcf04c378aee3bd4f787d410ff6ff1..23454acb66be2a88647262d98d50e0f115519ea0:/fish/Makefile diff --git a/fish/Makefile b/fish/Makefile index ad478edb..392b744f 100644 --- a/fish/Makefile +++ b/fish/Makefile @@ -1,12 +1,23 @@ -# $NetBSD: Makefile,v 1.7 1996/10/18 02:46:02 thorpej Exp $ +# $NetBSD: Makefile,v 1.10 1999/02/13 02:54:21 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= fish MAN= fish.6 -HIDEGAME=hidegame +SRCS= fish.c +FILES=fish.instr -beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/fish.instr \ - ${DESTDIR}/usr/share/games/fish.instr +all: $(PROG) -.include +$(PROG): $(SRCS) + $(CC) $(CFLAGS) -o $(PROG) $(SRCS) -I$(ROOT) + $(STRIP) $(PROG) + +install: $(PROG) $(MAN) + $(GINSTALL) -Dm755 $(PROG) $(DESTDIR)/$(PREFIX)/games/bsd-$(PROG) + $(GINSTALL) -Dm644 $(MAN) $(DESTDIR)/$(PREFIX)/share/man/man6/bsd-$(MAN) + $(GINSTALL) -Dm644 $(FILES) $(DESTDIR)/$(PREFIX)/share/games/bsd-$(FILES) + +clean: + rm -f $(CLEANFILES) $(PROG) + +.PHONY: all clean install