aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/ccache/Makefile.in
diff options
context:
space:
mode:
authorDanilo Almeida <dalmeida@mit.edu>1999-05-19 16:18:30 +0000
committerDanilo Almeida <dalmeida@mit.edu>1999-05-19 16:18:30 +0000
commitbd08f80e40c6cbb63520869f5be3f1d832cc7865 (patch)
tree0923af367f9c5561bf021c83314576b9859451f6 /src/lib/krb5/ccache/Makefile.in
parent6b6c052bcdaa702e26b3a4560cf6f4c53a0621ec (diff)
downloadkrb5-bd08f80e40c6cbb63520869f5be3f1d832cc7865.zip
krb5-bd08f80e40c6cbb63520869f5be3f1d832cc7865.tar.gz
krb5-bd08f80e40c6cbb63520869f5be3f1d832cc7865.tar.bz2
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
Diffstat (limited to 'src/lib/krb5/ccache/Makefile.in')
-rw-r--r--src/lib/krb5/ccache/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/krb5/ccache/Makefile.in b/src/lib/krb5/ccache/Makefile.in
index ddd34db..eafa557 100644
--- a/src/lib/krb5/ccache/Makefile.in
+++ b/src/lib/krb5/ccache/Makefile.in
@@ -44,19 +44,19 @@ all-windows:: subdirs $(OBJFILE)
##DOS##file\$(OUTPRE)file.lst::
##DOS## cd file
##DOS## @echo Making in krb5\ccache\file
-##DOS## -$(MAKE) -$(MFLAGS)
+##DOS## $(MAKE) -$(MFLAGS)
##DOS## cd ..
##DOS##memory\$(OUTPRE)file.lst::
##DOS## cd memory
##DOS## @echo Making in krb5\ccache\memory
-##DOS## -$(MAKE) -$(MFLAGS)
+##DOS## $(MAKE) -$(MFLAGS)
##DOS## cd ..
##DOS##ccapi\$(OUTPRE)file.lst::
##DOS## cd ccapi
##DOS## @echo Making in krb5\ccache\ccapi
-##DOS## -$(MAKE) -$(MFLAGS)
+##DOS## $(MAKE) -$(MFLAGS)
##DOS## cd ..
##DOS##$(OBJFILE): $(OBJS) file\$(OUTPRE)file.lst memory\$(OUTPRE)file.lst ccapi\$(OUTPRE)file.lst
@@ -71,13 +71,13 @@ clean-unix:: clean-libobjs
clean-windows::
cd file
@echo Making clean in krb5\ccache\file
- -$(MAKE) -$(MFLAGS) clean
+ $(MAKE) -$(MFLAGS) clean
cd ..\memory
@echo Making clean in krb5\ccache\memory
- -$(MAKE) -$(MFLAGS) clean
+ $(MAKE) -$(MFLAGS) clean
cd ..\ccapi
@echo Making clean in krb5\ccache\ccapi
- -$(MAKE) -$(MFLAGS) clean
+ $(MAKE) -$(MFLAGS) clean
cd ..
@echo Making clean in krb5\ccache
$(RM) $(OBJFILE)