diff options
| author | Theodore Tso <tytso@mit.edu> | 1994-01-17 22:37:01 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1994-01-17 22:37:01 +0000 |
| commit | 7eb7f6afb20199e45317d64f01aa56de39fe0220 (patch) | |
| tree | 8f4cf025a1df55f612ee691afae4960919a637f8 /src | |
| parent | cdd20f6228d33f5125e3efcf645643f702fc76fa (diff) | |
| download | krb5-7eb7f6afb20199e45317d64f01aa56de39fe0220.tar.gz krb5-7eb7f6afb20199e45317d64f01aa56de39fe0220.tar.xz krb5-7eb7f6afb20199e45317d64f01aa56de39fe0220.zip | |
Use direct pathnames instead of the -L dir -l xxx when linking directories
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3360 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/config/Project.tmpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/config/Project.tmpl b/src/config/Project.tmpl index da7d05dbc..56ad40cfd 100644 --- a/src/config/Project.tmpl +++ b/src/config/Project.tmpl @@ -25,10 +25,10 @@ #define ImakeCmd imake #endif #ifndef SSLib -#define SSLib -L$(TOPLIBD) -lss +#define SSLib $(TOPLIBD)/libss.a #endif #ifndef ComErrLib -#define ComErrLib -L$(TOPLIBD) -lcom_err +#define ComErrLib $(TOPLIBD)/libcom_err.a #endif #ifndef PepsyFlags #ifdef ISODE7 @@ -48,7 +48,7 @@ #define ArAddCmd ar cruv #endif #ifndef Krb4LibList -#define Krb4LibList -lkrb $(KLIBLOC) -l$(DES425LIB) +#define Krb4LibList -lkrb $(TOPLIBD)/libdes425.a #endif #ifndef Krb4KdbList #define Krb4KdbList -lkdb @@ -599,9 +599,9 @@ P_KRB4_COMPAT=-UKrb4Compat DBMLIB = DbmLib DEPKLIB = $(KRB5DEPLIB) $(DESDEPLIB) KLIBLOC = -L$(TOPLIBD) - KLIB = $(KLIBLOC) -l$(KRB5LIB) -l$(DESLIB) $(ISODELIB) $(COMERRLIB) $(DBMLIB) + KLIB = $(TOPLIBD)/libkrb5.a $(TOPLIBD)/libcrypto.a $(ISODELIB) $(COMERRLIB) $(DBMLIB) KDBDEPLIB = $(TOPLIBD)/libkdb5.a - KDBLIB = $(KLIBLOC) -lkdb5 + KDBLIB = $(TOPLIBD)/libkdb5.a KRB425DEPLIB = $(TOPLIBD)/libkrb425.a KRB425LIB = krb425 DES425DEPLIB = $(TOPLIBD)/libdes425.a |
