From aca4c5991aba4e07189dd3e1cfbaca503e3c2851 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Mon, 11 Oct 1999 17:18:23 +0000 Subject: [PATCH] [ICU-11] export ustdio X-Commit-URL: https://ssl.icu-project.org/trac/changeset/35 --- icu4c/source/extra/ustdio/Makefile.in | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/icu4c/source/extra/ustdio/Makefile.in b/icu4c/source/extra/ustdio/Makefile.in index cf9f78fb167..2839061d67e 100644 --- a/icu4c/source/extra/ustdio/Makefile.in +++ b/icu4c/source/extra/ustdio/Makefile.in @@ -57,6 +57,8 @@ LIBS = $(LIBICU-UC) $(LIBICU-I18N) @LIBS@ OBJECTS = locbund.o loccache.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o \ uscanf.o uscanf_p.o uscanset.o ustdio.o +HEADERS = ustdio.h + DEPS = $(OBJECTS:.o=.d) ## List of phony targets @@ -76,7 +78,19 @@ check: check-local all-local: $(TARGET) -install-local: all-local +install-local: all-local install-headers install-library + +install-library: all-local + $(mkinstalldirs) $(libdir) + $(INSTALL) $(TARGET) $(libdir)/$(TARGET) + +install-headers: + $(mkinstalldirs) $(includedir) + @list='$(HEADERS)'; for file in $$list; do \ + echo " $(INSTALL_DATA) $$file $(includedir)/$$file"; \ + $(INSTALL_DATA) $$file $(includedir)/$$file; \ + done + dist-local: