file reorg, pathnames.h, paths.h
[unix-history] / usr / src / usr.bin / diction / Makefile
index 7183942..ebc8d8a 100644 (file)
@@ -1,82 +1,69 @@
 #
 #
-#      @(#)Makefile    4.4     (Berkeley)      83/02/11
+# Copyright (c) 1987 The Regents of the University of California.
+# All rights reserved.
 #
 #
-#      make file for STYLE and DICTION
+# Redistribution and use in source and binary forms are permitted
+# 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.
 #
 #
-#      BIN is the directory for storing the object code
-#              for the 3 programs that make up style
-#      DICT is the full pathname of the file dict.d, the
-#              dictionary file used by DICTION
+#      @(#)Makefile    4.9 (Berkeley) %G%
 #
 #
-DESTDIR=
-SRCS = \
-       abbrev.c conp.h dict.c dict.d \
-       diction.c diction.sh edict.c ehash.c \
-       explain.d \
-       end.l getopt.c names.h nhash.c \
-       nwords.l outp.c part.l pscan.c \
-       style.h style.sh explain.sh ydict.c \
-       README
+CFLAGS=        -O
+LIBC=  /lib/libc.a
+SRCS=  diction.c nwords.c end.c part.c pscan.c outp.c
+OBJS=  nwords.o end.o part.o pscan.o outp.o
+MAN=   diction.0 style.0
 
 
-BIN = ${DESTDIR}/usr/lib
-DICT= -DDICT=\"/usr/lib/dict.d\"
+all: dprog style1 style2 style3
 
 
-all: diction style
+dprog: diction.c ${LIBC}
+       ${CC} ${CFLAGS} diction.c -o $@
 
 
-style: style1 style2 style3
+style1: nwords.o ${LIBC}
+       ${CC} nwords.o -o $@ -ll
 
 
-install: style diction style.sh diction.sh explain.sh dict.d explain.d
-       install -s style1 ${DESTDIR}/usr/lib
-       install -s style2 ${DESTDIR}/usr/lib
-       install -s style3 ${DESTDIR}/usr/lib
-       install -s dprog ${DESTDIR}/usr/lib
-       install -c style.sh ${DESTDIR}/usr/bin/style
-       install -c diction.sh ${DESTDIR}/usr/bin/diction
-       install -c explain.sh ${DESTDIR}/usr/bin/explain
-       install -c dict.d ${DESTDIR}/usr/lib
-       install -c explain.d ${DESTDIR}/usr/lib
-#      ln ${DESTDIR}/usr/bin/explain ${DESTDIR}/usr/bin/suggest
+style2: end.o ${LIBC}
+       ${CC} end.o -o $@ -ll
 
 
-clean:
-       rm -f prtlex.c wdslex.c endlex.c
-       rm -f *.o style1 style2 style3 dprog
-
-style3: prtlex.o pscan.o outp.o
-       cc prtlex.o pscan.o outp.o -ll  -o style3
-prtlex.c: part.l
-       lex part.l
-       mv lex.yy.c prtlex.c
-prtlex.o: names.h prtlex.c conp.h style.h names.h
-       cc -c -O prtlex.c
-pscan.o: names.h conp.h pscan.c
-       cc -c -O pscan.c
-outp.o: names.h conp.h style.h outp.c
-       cc -c -O outp.c
+style3: part.o pscan.o outp.o ${LIBC}
+       ${CC} part.o pscan.o outp.o -o $@ -ll
 
 
-style1: wdslex.o
-       cc wdslex.o -ll  -o style1
-wdslex.o: wdslex.c nhash.c dict.c ydict.c names.h abbrev.c
-       cc -c wdslex.c
-wdslex.c: nwords.l
-       lex nwords.l
-       mv lex.yy.c wdslex.c
-
-style2: endlex.o
-       cc endlex.o -ll  -o style2
-endlex.o: names.h endlex.c ehash.c edict.c
-       cc -c endlex.c
-endlex.c: end.l
-       lex end.l
-       mv lex.yy.c endlex.c
+clean:
+       rm -f ${OBJS} part.c nwords.c end.c style1 style2 style3 dprog
 
 
-diction: dprog
-dprog: diction.c
-       cc -O $(DICT) diction.c -i -o dprog
+cleandir: clean
+       rm -f ${MAN} tags .depend
 
 
-srcs:  sources
+depend: ${SRCS}
+       mkdep ${CFLAGS} ${SRCS}
 
 
-sources: $(SRCS)
+install: ${MAN}
+       install -s -o bin -g bin -m 755 dprog style1 style2 style3 \
+           ${DESTDIR}/usr/libexec
+       install -c -o bin -g bin -m 755 dict.d explain.d \
+           ${DESTDIR}/usr/share/dict
+       install -c -o bin -g bin -m 755 style.sh ${DESTDIR}/usr/bin/style
+       install -c -o bin -g bin -m 755 diction.sh ${DESTDIR}/usr/bin/diction
+       install -c -o bin -g bin -m 755 explain.sh ${DESTDIR}/usr/bin/explain
+       install -c -o bin -g bin -m 444 ${MAN} ${DESTDIR}/usr/man/cat1
+       rm -f ${DESTDIR}/usr/man/cat1/explain.0
+       ln ${DESTDIR}/usr/man/cat1/diction.0 ${DESTDIR}/usr/man/cat1/explain.0
 
 
-$(SRCS):
-       sccs get $@
+lint: ${SRCS}
+       lint ${CFLAGS} nwords.c
+       lint ${CFLAGS} end.c
+       lint ${CFLAGS} part.c pscan.c outp.c
 
 
+tags: ${SRCS}
+       ctags nwords.c
+       ctags -a end.c
+       ctags -a part.c pscan.c outp.c
+       sort -o tags tags