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
+6 -5
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: # Make command line options:
# -DCLOBBER will remove /usr/include and MOST of /usr/lib # -DCLOBBER will remove /usr/include and MOST of /usr/lib
@@ -17,10 +17,14 @@
# Put initial settings here. # Put initial settings here.
SUBDIR= 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) .if exists(include)
SUBDIR+= include SUBDIR+= include
.endif .endif
.if exists(lib)
SUBDIR+= lib
.endif
.if exists(bin) .if exists(bin)
SUBDIR+= bin SUBDIR+= bin
@@ -34,9 +38,6 @@ SUBDIR+= games
.if exists(gnu) .if exists(gnu)
SUBDIR+= gnu SUBDIR+= gnu
.endif .endif
.if exists(lib)
SUBDIR+= lib
.endif
.if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES) .if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
SUBDIR+= eBones SUBDIR+= eBones
.endif .endif