diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-09-05 12:06:04 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-09-05 12:06:04 +0000 |
| commit | 9d77077e73bdea85531dc3a55cea1aa7e6435155 (patch) | |
| tree | ec0d5dab08e53fcf468a8df90f35d90fdf60e641 /src/Imakefile | |
| parent | 4129145a9b5b8263a2777fe348d79d6eed72aa77 (diff) | |
add #ifdef's for UseComErrInstalled, UseSSInstalled
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1080 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/Imakefile')
| -rw-r--r-- | src/Imakefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/Imakefile b/src/Imakefile index b4e06b61b..4086d6c45 100644 --- a/src/Imakefile +++ b/src/Imakefile @@ -10,7 +10,18 @@ #define IHaveSubdirs #define PassCDebugFlags - SUBDIRS = comerr ss error_tables asn.1 lib kdc admin clients appl +#ifdef UseComErrInstalled +COMERRDIR= +#else +COMERRDIR=comerr +#endif +#ifdef UseSSInstalled +SSDIR= +#else +SSDIR=ss +#endif + SUBDIRS = $(COMERRDIR) $(SSDIR) \ + error_tables asn.1 lib kdc admin clients appl LNINSTALLDIRS = MakeSubdirs($(SUBDIRS)) |
