
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3287 ec53bebd-3082-4978-b11e-865c3cabbd6b
33 lines
691 B
Makefile
33 lines
691 B
Makefile
# $Id$
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies foreign
|
|
|
|
INCLUDES = -I$(top_builddir)/include -I$(srcdir)
|
|
|
|
lib_LIBRARIES = liberror.a
|
|
|
|
SUFFIXES = .et .h
|
|
|
|
incdir = $(includedir)
|
|
inc_DATA = asn1_err.h krb5_err.h heim_err.h
|
|
idir = $(top_builddir)/include
|
|
|
|
CLEANFILES = asn1_err.c asn1_err.h krb5_err.c krb5_err.h heim_err.c heim_err.h
|
|
|
|
liberror_a_SOURCES = krb5_err.c asn1_err.c error.c heim_err.c
|
|
|
|
all-local: $(inc_DATA)
|
|
@for i in $(inc_DATA); do \
|
|
if cmp -s $$i $(idir)/$$i 2> /dev/null ; then :; else\
|
|
echo " $(INSTALL_DATA) $$i $(idir)/$$i"; \
|
|
$(INSTALL_DATA) $$i $(idir)/$$i; \
|
|
fi ; \
|
|
done
|
|
.et.c:
|
|
$(SHELL) ./compile_et $<
|
|
|
|
.et.h:
|
|
$(SHELL) ./compile_et $<
|
|
|
|
krb5_err.o: asn1_err.c
|