X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/85e3e21daf42017517f86cdfaf49204b690d2423..45ea94b6dba36d78db6e043f934d198320c8e27a:/usr/src/games/Makefile diff --git a/usr/src/games/Makefile b/usr/src/games/Makefile index 1f4f304b85..3d1c1acc1b 100644 --- a/usr/src/games/Makefile +++ b/usr/src/games/Makefile @@ -3,13 +3,18 @@ # All rights reserved. # # Redistribution and use in source and binary forms are permitted -# provided that this notice is preserved and that due credit is given -# to the University of California at Berkeley. The name of the University -# may not be used to endorse or promote products derived from this -# software without specific prior written permission. This software -# is provided ``as is'' without express or implied warranty. +# provided that the above copyright notice and this paragraph are +# duplicated in all such forms and that any documentation, +# advertising materials, and other materials related to such +# distribution and use acknowledge that the software was developed +# by the University of California, Berkeley. The name of the +# University may not be used to endorse or promote products derived +# from this software without specific prior written permission. +# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR +# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. # -# @(#)Makefile 5.10 (Berkeley) %G% +# @(#)Makefile 5.12 (Berkeley) %G% # DESTDIR= CFLAGS= -O @@ -19,7 +24,7 @@ LIBC= /lib/libc.a # # doctor removed until lisp works SUBDIR= adventure atc backgammon battlestar boggle btlgammon canfield \ - cribbage dm fortune gnuchess hack hangman hunt larn mille monop \ + cribbage dm fortune hack hangman hunt mille monop \ phantasia quiz robots rogue sail snake trek \ games.${MACHINE} @@ -29,13 +34,13 @@ SCRIPT= wargames # C sources that live in the current directory # -SRCS= arithmetic.c banner.c bcd.c factor.c fish.c number.c ppt.c primes.c \ - rain.c worm.c worms.c wump.c +SRCS= arithmetic.c banner.c bcd.c factor.c fish.c morse.c number.c ppt.c \ + primes.c rain.c worm.c worms.c wump.c # C programs that live in the current directory and do not need # explicit make lines. # -STD= arithmetic banner bcd factor fish number ppt wump +STD= arithmetic banner bcd factor fish morse number ppt wump # C programs that live in the current directory and need explicit make lines. # @@ -45,7 +50,7 @@ NSTD= primes rain worm worms HIDE= fish wump worm # programs that don't -NOHIDE= arithmetic banner bcd factor number ppt primes rain worms +NOHIDE= arithmetic banner bcd factor morse number ppt primes rain worms # Programs that require a lisp interpreter or compiler LISP= doctor @@ -111,17 +116,19 @@ ppt: ppt.c /usr/include/stdio.h primes: primes.c /usr/include/stdio.h /usr/include/math.h rain: rain.c /usr/include/sys/types.h /usr/include/stdio.h /usr/include/sgtty.h rain: /usr/include/sys/ioctl.h /usr/include/sys/ttychars.h -rain: /usr/include/sys/ttydev.h /usr/include/signal.h -rain: /usr/include/machine/trap.h +rain: /usr/include/sys/ttydefaults.h /usr/include/sys/ttydev.h +rain: /usr/include/signal.h /usr/include/machine/trap.h worm: worm.c /usr/include/ctype.h /usr/include/curses.h /usr/include/stdio.h worm: /usr/include/sgtty.h /usr/include/sys/ioctl.h /usr/include/sys/ttychars.h -worm: /usr/include/sys/ttydev.h /usr/include/signal.h -worm: /usr/include/machine/trap.h +worm: /usr/include/sys/ttydefaults.h /usr/include/sys/ttydev.h +worm: /usr/include/signal.h /usr/include/machine/trap.h worms: worms.c /usr/include/sys/types.h /usr/include/stdio.h worms: /usr/include/sgtty.h /usr/include/sys/ioctl.h -worms: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h -worms: /usr/include/signal.h /usr/include/machine/trap.h +worms: /usr/include/sys/ttychars.h /usr/include/sys/ttydefaults.h +worms: /usr/include/sys/ttydev.h /usr/include/signal.h +worms: /usr/include/machine/trap.h wump: wump.c /usr/include/stdio.h /usr/include/sgtty.h /usr/include/sys/ioctl.h -wump: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h +wump: /usr/include/sys/ttychars.h /usr/include/sys/ttydefaults.h +wump: /usr/include/sys/ttydev.h # IF YOU PUT ANYTHING HERE IT WILL GO AWAY