Home | History | Annotate | Line # | Download | only in plugin
Makefile.am revision 1.1.1.2.20.1
      1       1.1.1.2  elric # Id
      2           1.1  elric 
      3           1.1  elric include $(top_srcdir)/Makefile.am.common
      4           1.1  elric 
      5           1.1  elric noinst_DATA = krb5.conf
      6           1.1  elric 
      7           1.1  elric SCRIPT_TESTS = check-pac
      8           1.1  elric TESTS = $(SCRIPT_TESTS)
      9           1.1  elric 
     10           1.1  elric port = 49188
     11           1.1  elric 
     12           1.1  elric do_subst = sed -e 's,[@]srcdir[@],$(srcdir),g' \
     13  1.1.1.2.20.1    snj 	-e 's,[@]env_setup[@],$(top_builddir)/tests/bin/setup-env,g' \
     14           1.1  elric 	-e 's,[@]port[@],$(port),g' \
     15           1.1  elric 	-e 's,[@]objdir[@],$(top_builddir)/tests/plugin,g' \
     16           1.1  elric 	-e 's,[@]EGREP[@],$(EGREP),g' 
     17           1.1  elric 
     18           1.1  elric LDADD = ../../lib/krb5/libkrb5.la $(LIB_roken)
     19           1.1  elric 
     20           1.1  elric check-pac: check-pac.in Makefile
     21           1.1  elric 	$(do_subst) < $(srcdir)/check-pac.in > check-pac.tmp
     22           1.1  elric 	chmod +x check-pac.tmp
     23           1.1  elric 	mv check-pac.tmp check-pac
     24           1.1  elric 
     25           1.1  elric krb5.conf: krb5.conf.in Makefile
     26           1.1  elric 	$(do_subst) < $(srcdir)/krb5.conf.in > krb5.conf.tmp
     27           1.1  elric 	mv krb5.conf.tmp krb5.conf
     28           1.1  elric 
     29           1.1  elric lib_LTLIBRARIES = windc.la
     30           1.1  elric 
     31           1.1  elric windc_la_SOURCES = windc.c
     32           1.1  elric windc_la_LDFLAGS = -module
     33           1.1  elric 
     34           1.1  elric CLEANFILES= \
     35           1.1  elric 	$(TESTS) \
     36           1.1  elric 	server.keytab \
     37           1.1  elric 	current-db* \
     38           1.1  elric 	foopassword \
     39           1.1  elric 	krb5.conf krb5.conf.tmp \
     40           1.1  elric 	messages.log
     41           1.1  elric 
     42           1.1  elric EXTRA_DIST = \
     43  1.1.1.2.20.1    snj 	NTMakefile \
     44           1.1  elric 	check-pac.in \
     45           1.1  elric 	krb5.conf.in
     46