## Process this file with automake to produce Makefile.in -*- makefile -*- AUTOMAKE_OPTIONS = foreign 1.4 no-dependencies headers = \ upcr_proxy.h \ whirl2c.h EXTRA_DIST = $(headers) all: install-data-local: $(headers) $(mkinstalldirs) $(DESTDIR)$(includedir)/$(subdir) @list='$(headers)'; for p in $$list; do \ if test -f $(srcdir)/$$p; then \ filename=`basename $$p`; \ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(includedir)/$(subdir)/$$filename"; \ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(includedir)/$(subdir)/$$filename; \ else :; fi; \ done uninstall-local: rm -f $(DESTDIR)$(includedir)/$(subdir)/*.h