mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-11 export ustdio
X-SVN-Rev: 35
This commit is contained in:
parent
a2f94f0569
commit
625332a637
1 changed files with 15 additions and 1 deletions
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue