From bd08f80e40c6cbb63520869f5be3f1d832cc7865 Mon Sep 17 00:00:00 2001 From: Danilo Almeida Date: Wed, 19 May 1999 16:18:30 +0000 Subject: These are a bunch of intertwined changes to the windows build. This log message includes all of the different changes across several Makefile.in files (and win-pre.in and win-post.in): - Remove "-" from recursive windows make invocations so that we can bail on a build error. New MIGNORE option restores the previous bailing behavior. - Update windows readme to reflect current practices. - Add NO_OUTDIR synonym for NO_OUTPRE in windows build. - Top-level windows Makefile now builds util which now builds util/windows, util/et, and util/profile (instead of building them directly). - Remove trailing backslash from rule that creates the windows output dir. This backslash would cause the rule to always be invoked. - Move WCONFIG and WCONFIG_EXE definitions into win-pre.in. - Remove rules in include directory that blindly copy include header files from gssapi, et, and profile. Instead, use/add build rules to the components that generate them that copy only when the file changes. - Use dependencies in include/krb5 to copy header files instead of blindly copying them. Add !if 0/!endif wrapper to Unix version of the rules. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11464 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/Makefile.in | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/windows/Makefile.in') diff --git a/src/windows/Makefile.in b/src/windows/Makefile.in index 04899ae4e6..925a23c957 100644 --- a/src/windows/Makefile.in +++ b/src/windows/Makefile.in @@ -7,35 +7,35 @@ NO_OUTPRE=1 all-windows:: @echo Making in windows\lib cd lib - -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) + $(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD) @echo Making in windows\cns cd ..\cns - -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) + $(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD) @echo Making in windows\wintel cd ..\wintel - -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) + $(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD) @echo Making in windows\gss cd ..\gss - -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) + $(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD) @echo Making in windows\gina cd ..\gina - -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD) + $(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD) cd .. clean-windows:: @echo Making clean in windows\lib cd lib - -$(MAKE) -$(MAKEFLAGS) clean + $(MAKE) -$(MFLAGS) clean @echo Making clean in windows\cns cd ..\cns - -$(MAKE) -$(MAKEFLAGS) clean + $(MAKE) -$(MFLAGS) clean @echo Making clean in windows\wintel cd ..\wintel - -$(MAKE) -$(MAKEFLAGS) clean + $(MAKE) -$(MFLAGS) clean @echo Making clean in windows\gss cd ..\gss - -$(MAKE) -$(MAKEFLAGS) clean + $(MAKE) -$(MFLAGS) clean @echo Making clean in windows\gina cd ..\gina - -$(MAKE) -$(MAKEFLAGS) clean + $(MAKE) -$(MFLAGS) clean cd .. -- cgit