From: kouril Date: Fri, 31 Oct 2003 15:30:53 +0000 (+0000) Subject: Added variable to makefile.include to ease build of stand-alone spnegokrb5 X-Git-Tag: v5.0-rc3~20 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.git;a=commitdiff_plain;h=63b09903489a75c85acc5e2ab07501f5620ce74c Added variable to makefile.include to ease build of stand-alone spnegokrb5 --- diff --git a/Makefile b/Makefile index bd3ac85..4f27f76 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,13 @@ ifndef APXS APXS = apxs endif -all: modauthkerb +ifdef SPNEGO_ONLY + TARGET = libspnegokrb5 +else + TARGET = modauthkerb +endif + +all: $(TARGET) libspnegokrb5: (cd spnegokrb5 && make)