Home | History | Annotate | Line # | Download | only in psd
Makefile revision 1.3
      1 #	@(#)Makefile	8.1 (Berkeley) 6/8/93
      2 
      3 # The following modules do not build/install:
      4 # 10.gdb, 13.rcs
      5 
      6 # Missing:
      7 # 07.pascal 14.sccs 17.m4
      8 
      9 # Missing from 4.4BSD-Lite:
     10 # 01.cacm 02.implement 03.iosys 04.uprog 06.Clang 08.f77 09.f77io
     11 # 11.adb 15.yacc 16.lex
     12 
     13 BINDIR=	/usr/share/doc/psd
     14 FILES=	00.contents Makefile Title
     15 SUBDIR=	05.sysman 20.ipctut 21.ipc
     16 .if exists(12.make)
     17 SUBDIR+= 12.make
     18 .endif
     19 .if exists(18.gprof)
     20 SUBDIR+= 18.gprof
     21 .endif
     22 .if exists(19.curses)
     23 SUBDIR+= 19.curses
     24 .endif
     25 
     26 Title.ps: ${FILES}
     27 	groff Title > ${.TARGET}
     28 
     29 contents.ps: ${FILES}
     30 	groff -ms 00.contents > ${.TARGET}
     31 
     32 beforeinstall:
     33 	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
     34 	    ${DESTDIR}${BINDIR}
     35 
     36 .include <bsd.subdir.mk>
     37