diff options
author | Keith Vetter <keithv@fusion.com> | 1995-04-20 17:21:36 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-04-20 17:21:36 +0000 |
commit | 8b70df54f52aa1132e99aa1a285c18fe6355fa44 (patch) | |
tree | cc221ebc4e14a227ab8ccc25109296780ed52810 /src | |
parent | ad7654a24f6090fababd3e86399d6ddfb9e9d1d7 (diff) | |
download | krb5-8b70df54f52aa1132e99aa1a285c18fe6355fa44.tar.gz krb5-8b70df54f52aa1132e99aa1a285c18fe6355fa44.tar.xz krb5-8b70df54f52aa1132e99aa1a285c18fe6355fa44.zip |
Smarter PC makefile pulling .h files from the gssapi world
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5395 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/include/ChangeLog | 6 | ||||
-rw-r--r-- | src/include/Makefile.in | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 8167b8c54..c6a41934c 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,9 @@ +Wed Apr 29 10:00:00 1995 Keith Vetter (keithv@fusion.com) + + * Makefile.in: duplicated the file copying stuff from + ..\gssapi\generic so that all the copying stuff can be + found in one place. + Thu Apr 20 11:32:09 1995 <tytso@rsx-11.mit.edu> * krb5.h, k5-int.h: Inlined the following include files, to diff --git a/src/include/Makefile.in b/src/include/Makefile.in index 219d0ceb8..e02f086fc 100644 --- a/src/include/Makefile.in +++ b/src/include/Makefile.in @@ -8,6 +8,9 @@ all-mac:: all-windows:: copy $(BUILDTOP)\util\et\com_err.h . + if not exist gssapi\nul mkdir gssapi + copy $(BUILDTOP)\lib\gssapi\generic\gssapi.h gssapi + copy $(BUILDTOP)\lib\gssapi\generic\gssapi_generic.h gssapi cd krb5 @echo Making in include\krb5 -$(MAKE) -$(MFLAGS) LIBCMD=$(LIBCMD) @@ -20,6 +23,8 @@ clean-mac:: clean-windows:: $(RM) com_err.h + $(RM) gssapi\gssapi.h gssapi\gssapi_generic.h + if exist gssapi\nul rmdir gssapi cd krb5 @echo Making clean in include\krb5 -$(MAKE) -$(MFLAGS) clean |