We must do include and lib first so that the perl *.ph generation

works correctly as it uses the header files installed by this.
This commit is contained in:
Rodney W. Grimes 1995-03-27 01:31:09 +00:00
parent 668326cbc5
commit e080a7f08a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7407

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.49 1995/03/23 19:03:02 rgrimes Exp $
# $Id: Makefile,v 1.50 1995/03/23 23:40:29 rgrimes Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include and MOST of /usr/lib
@ -17,10 +17,14 @@
# Put initial settings here.
SUBDIR=
# do include first.
# We must do include and lib first so that the perl *.ph generation
# works correctly as it uses the header files installed by this.
.if exists(include)
SUBDIR+= include
.endif
.if exists(lib)
SUBDIR+= lib
.endif
.if exists(bin)
SUBDIR+= bin
@ -34,9 +38,6 @@ SUBDIR+= games
.if exists(gnu)
SUBDIR+= gnu
.endif
.if exists(lib)
SUBDIR+= lib
.endif
.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
SUBDIR+= eBones
.endif