diff options
| author | John Gilmore <gnu@toad.com> | 1995-03-17 04:57:34 +0000 |
|---|---|---|
| committer | John Gilmore <gnu@toad.com> | 1995-03-17 04:57:34 +0000 |
| commit | a2cdd334f0fb25194ca29ba3aaf25043f6f4cde2 (patch) | |
| tree | 4c7c88e922a0372204ab953885081625d9a3c9c6 /src/config/mac-post.in | |
| parent | ce2c38e41c226b9135c581208433c0b53b48ebc7 (diff) | |
| download | krb5-a2cdd334f0fb25194ca29ba3aaf25043f6f4cde2.tar.gz krb5-a2cdd334f0fb25194ca29ba3aaf25043f6f4cde2.tar.xz krb5-a2cdd334f0fb25194ca29ba3aaf25043f6f4cde2.zip | |
First cut at Macintosh configuration support
* mac-config.cache: New file, a hand-built autoconf `config.cache'
file with the right values for building under MPW.
* mac-config.README: Documentation for mac-config.cache.
* mac-pre.in, mac-post.in: Versions of pre.in and post.in for
configuring on MPW.
* mac-mf.sed: A `sed' script which will turn carefully constructed
Unix Makefiles into carefully constructed Macintosh MPW Makefiles.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5139 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/config/mac-post.in')
| -rw-r--r-- | src/config/mac-post.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/config/mac-post.in b/src/config/mac-post.in new file mode 100644 index 000000000..f06af3c22 --- /dev/null +++ b/src/config/mac-post.in @@ -0,0 +1,16 @@ +# config/post.in +# put all:: first just in case no other rules occur here +# +all:: + +check:: + +clean:: clean-$(WHAT) + $(RM) config.log pre.out post.out Makefile.out + +clean-unix:: + if test -n "$(OBJS)" ; then $(RM) $(OBJS); else :; fi + +clean-windows:: + $(RM) *.$(OBJEXT) + $(RM) msvc.pdb *.err |
