From a3eaea845641e3a309708a0ddec23c6a4b120e8c Mon Sep 17 00:00:00 2001 From: gdr-ftp Date: Sun, 8 Mar 1998 18:09:03 +0000 Subject: [PATCH] lib.mk: Added $(LOCAL_SETUP) to the list of build targets, before $(LIBTARGET). LOCAL_SETUP should be set in the lower makefiles if there is a target which must be made prior to the main compilation. --- lib/lib.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lib.mk b/lib/lib.mk index 038e399..4e1a86c 100644 --- a/lib/lib.mk +++ b/lib/lib.mk @@ -1,5 +1,5 @@ # -# $Id: lib.mk,v 1.5 1998/02/17 00:33:08 gdr-ftp Exp $ +# $Id: lib.mk,v 1.6 1998/03/08 18:09:03 gdr-ftp Exp $ # .INCLUDE: /src/gno/paths.mk @@ -30,7 +30,7 @@ OPTIMIZE*= 78 CFLAGS += -O$(OPTIMIZE) # build is the default target -build: $(OBJ_DIR) $(LIBTARGET) +build: $(OBJ_DIR) $(LOCAL_SETUP) $(LIBTARGET) # create the object directory hierarchy if necessary $(OBJ_DIR):