home *** CD-ROM | disk | FTP | other *** search
- *** Makefile.orig Fri Oct 30 05:58:04 1992
- --- Makefile Wed Dec 9 11:19:10 1992
- ***************
- *** 1,15 ****
- # Makefile for <installdir>/bin/which
- # If your operating system does not support multiple groups (see getgroups(2)
- # on BSD-derivatives), comment out the next line.
- ! MULTIPLE_GROUPS=-DMULTIPLE_GROUPS
-
- which: which6.c
- cc -O $(MULTIPLE_GROUPS) -o which which6.c
-
- ! install: which doc
- /bin/mv -f which <installdir>/bin
- - /bin/mv -f which.man <installsharedir>/man/cat1/which.1
- /bin/cp which.1 <installsharedir>/man/man1
-
- - doc:
- - nroff -man which.1 > which.man
- --- 1,12 ----
- # Makefile for <installdir>/bin/which
- # If your operating system does not support multiple groups (see getgroups(2)
- # on BSD-derivatives), comment out the next line.
- ! #MULTIPLE_GROUPS=-DMULTIPLE_GROUPS
-
- which: which6.c
- cc -O $(MULTIPLE_GROUPS) -o which which6.c
-
- ! install: which
- /bin/mv -f which <installdir>/bin
- /bin/cp which.1 <installsharedir>/man/man1
-
-