]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - Makefile
games: remove trailing whitespace in *.c and *.h
[bsdgames-darwin.git] / Makefile
index 55d17e73dde88d484e27d8fa6c2d52ec1aceb753..fbb0be58618401312e6906f09c3d1485f8d0dd2c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,48 @@
-#      from: @(#)Makefile      5.15.1.2 (Berkeley) 5/8/91
-#      $Id: Makefile,v 1.6 1994/05/06 07:19:19 cgd Exp $
+#      $NetBSD: Makefile,v 1.31 2021/01/02 03:21:39 nat Exp $
+#      @(#)Makefile    8.3 (Berkeley) 7/24/94
 
-#Missing: adventure boggle ching dungeon hunt phantasia warp 
+SUBDIR=        adventure arithmetic atc \
+       backgammon banner battlestar bcd boggle \
+       caesar canfield cgram ching colorbars countmail cribbage \
+       dm factor fish gomoku \
+       hack hals_end hangman hunt larn mille monop morse number \
+       phantasia pig pom ppt primes quiz \
+       rain random robots rogue sail snake testpat tetris trek \
+       wargames warp worm worms wtf wump
+TOPTARGETS= all clean install
 
-SUBDIR=        arithmetic atc backgammon banner battlestar bcd caesar canfield \
-       cribbage dm factor fish fortune hack hangman larn \
-       mille monop morse number pig pom ppt primes quiz rain robots rogue \
-       sail snake tetris trek wargames worm worms wump
+PREFIX        ?= /usr
+LOCALSTATEDIR ?= /var
+SYSCONFDIR    ?= /etc
+ROOT          := $(shell pwd)
 
-.include <bsd.subdir.mk>
+export ROOT PREFIX LOCALSTATEDIR SYSCONFDIR
+
+$(TOPTARGETS): $(SUBDIR)
+
+$(SUBDIR): config.h
+       +$(MAKE) -C $@ $(MAKECMDGOALS)
+
+config.h:
+       @echo "#define PREFIX \"$(PREFIX)\"" > config.h
+       @echo "#define LOCALSTATEDIR \"$(LOCALSTATEDIR)\"" >> config.h
+       @echo "#define SYSCONFDIR \"$(SYSCONFDIR)\"" >> config.h
+
+update:
+       TEMP=$$(mktemp -d); \
+       cd ~/Documents/BSD/NetBSD; \
+       git format-patch -o $$TEMP $(shell cat upstream-commit) games; \
+       git rev-list HEAD -1 games/ > $(ROOT)/upstream-commit; \
+       cd $(ROOT); \
+       for patch in $$TEMP/*.patch; do \
+               if [ "$$(filterdiff -x '*/Makefile' --strip=1 $$patch --clean)" = "" ]; then \
+                       echo "Skipping $$(basename $$patch) because it's empty"; \
+               else \
+                       filterdiff -x '*/Makefile' --strip=1 $$patch | git am; \
+               fi; \
+       done
+
+clean:
+       rm -f config.h
+
+.PHONY: $(TOPTARGETS) $(SUBDIR) update