ICU-11 export ustdio

X-SVN-Rev: 35
This commit is contained in:
Steven R. Loomis 1999-10-11 17:18:23 +00:00
parent a2f94f0569
commit 625332a637

View file

@ -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: