1*7f2fe78bSCy Schubertmydir=kadmin$(S)server 2*7f2fe78bSCy SchubertBUILDTOP=$(REL)..$(S).. 3*7f2fe78bSCy SchubertKDB_DEP_LIB=$(DL_LIB) $(THREAD_LINKOPTS) 4*7f2fe78bSCy Schubert 5*7f2fe78bSCy SchubertLOCALINCLUDES = -I$(top_srcdir)/lib/gssapi/generic \ 6*7f2fe78bSCy Schubert -I$(top_srcdir)/lib/gssapi/krb5 -I$(BUILDTOP)/lib/gssapi/generic \ 7*7f2fe78bSCy Schubert -I$(BUILDTOP)/lib/gssapi/krb5 8*7f2fe78bSCy Schubert 9*7f2fe78bSCy SchubertPROG = kadmind 10*7f2fe78bSCy SchubertOBJS = auth.o auth_acl.o auth_self.o kadm_rpc_svc.o server_stubs.o \ 11*7f2fe78bSCy Schubert ovsec_kadmd.o schpw.o misc.o ipropd_svc.o 12*7f2fe78bSCy SchubertSRCS = auth.o auth_acl.c auth_self.c kadm_rpc_svc.c server_stubs.c \ 13*7f2fe78bSCy Schubert ovsec_kadmd.c schpw.c misc.c ipropd_svc.c 14*7f2fe78bSCy Schubert 15*7f2fe78bSCy Schubertall: $(PROG) 16*7f2fe78bSCy Schubert 17*7f2fe78bSCy Schubert$(PROG): $(OBJS) $(KADMSRV_DEPLIBS) $(KRB5_BASE_DEPLIBS) $(APPUTILS_DEPLIB) $(VERTO_DEPLIB) 18*7f2fe78bSCy Schubert $(CC_LINK) -o $(PROG) $(OBJS) $(APPUTILS_LIB) $(KADMSRV_LIBS) $(KDB_DEP_LIB) $(KRB5_BASE_LIBS) $(VERTO_LIBS) 19*7f2fe78bSCy Schubert 20*7f2fe78bSCy Schubertinstall: 21*7f2fe78bSCy Schubert $(INSTALL_PROGRAM) $(PROG) ${DESTDIR}$(SERVER_BINDIR)/$(PROG) 22*7f2fe78bSCy Schubert 23*7f2fe78bSCy Schubertclean: 24*7f2fe78bSCy Schubert $(RM) $(PROG) $(OBJS) 25