## Makefile.in for ICUAPPS - icuapps/locexp/util
## 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 = locexp/util

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

## Target information
TARGET = liblxutil.$(SO)

OBJECTS = decompcb.o lx_utils.o ures_additions.o
HEADERS = decompcb.h lx_utils.h ures_additions.h

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-headers install-library

install-library: all-local
	$(mkinstalldirs) $(libdir)
	$(INSTALL) $(TARGET) $(libdir)/$(TARGET)

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

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:

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)
	$(SHLIB.c) -o $@ $^ $(ICULIBS)

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



