## Makefile.in for ICU - example/usort/client
## Steven  R. Loomis

srcdir=@srcdir@
top_srcdir=@top_srcdir@

# srcdir must be set before this is included
include @ICU_MAKEFILE@


## Build directory information
top_builddir = ..
subdir = uconv

## Extra files to remove for 'make clean'
CLEANFILES = *~

## Target information
TARGET = uconv

OBJECTS = uconv.o

DEPS = $(OBJECTS:.o=.d)

## List of phony targets
.PHONY : all all-local install install-local clean clean-local \
distclean distclean-local dist dist-local check check-local

## Clear suffix list
.SUFFIXES :

## List of standard targets
all: all-local
install: install-local
clean: clean-local
distclean : distclean-local
dist: dist-local
check: check-local

all-local: $(TARGET)

install-local: all-local install-target

mkinstalldirs = $(SHELL) $(sbindir)/mkinstalldirs

install-target: all-local
	$(mkinstalldirs) $(bindir)
	$(INSTALL) $(TARGET) $(bindir)/$(TARGET)

dist-local:

clean-local:
	test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
	rm -f $(OBJECTS) $(TARGET)

distclean-local: clean-local
	rm -f Makefile $(DEPS)

check-local:

Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
	cd $(top_builddir) \
	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status

# ICULIBS includes all standard ICU libraries.
# if we wanted only part of the ICU, we could use (for example) just
#         '$(LIBS) -licu-uc -lusort' ...

$(TARGET) : $(OBJECTS)
	$(LINK.c) -o $@ $^ $(ICULIBS)

ifneq ($(MAKECMDGOALS),distclean)
-include $(DEPS)
endif



