]> git.saurik.com Git - apple/icu.git/blame - icuSources/tools/gennorm2/Makefile.in
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / tools / gennorm2 / Makefile.in
CommitLineData
729e4ab9 1## Makefile.in for ICU - tools/gennorm2
4388f060 2## Copyright (c) 2009-2011, International Business Machines Corporation and
73c04bcf 3## others. All Rights Reserved.
729e4ab9 4## Steven R. Loomis/Markus W. Scherer
73c04bcf
A
5
6## Source directory information
7srcdir = @srcdir@
8top_srcdir = @top_srcdir@
9
10top_builddir = ../..
11
12include $(top_builddir)/icudefs.mk
13
14## Build directory information
729e4ab9 15subdir = tools/gennorm2
73c04bcf 16
729e4ab9 17TARGET_STUB_NAME = gennorm2
73c04bcf
A
18
19## Extra files to remove for 'make clean'
729e4ab9 20CLEANFILES = *~ $(DEPS)
73c04bcf
A
21
22## Target information
23TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
24
73c04bcf
A
25CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
26LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
27
729e4ab9 28OBJECTS = gennorm2.o n2builder.o
73c04bcf
A
29
30DEPS = $(OBJECTS:.o=.d)
31
32## List of phony targets
33.PHONY : all all-local install install-local clean clean-local \
34distclean distclean-local dist dist-local check check-local install-man
35
36## Clear suffix list
37.SUFFIXES :
38
39## List of standard targets
40all: all-local
41install: install-local
42clean: clean-local
43distclean : distclean-local
44dist: dist-local
45check: all check-local
46
729e4ab9 47all-local: $(TARGET)
73c04bcf 48
729e4ab9
A
49install-local: all-local
50 $(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
51 $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
73c04bcf
A
52
53dist-local:
54
55clean-local:
56 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
57 $(RMV) $(TARGET) $(OBJECTS)
58
59distclean-local: clean-local
60 $(RMV) Makefile
61
62check-local: all-local
63
64Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
65 cd $(top_builddir) \
66 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
67
68$(TARGET) : $(OBJECTS)
69 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
46f4442e 70 $(POST_BUILD_STEP)
73c04bcf
A
71
72
73c04bcf
A
73ifeq (,$(MAKECMDGOALS))
74-include $(DEPS)
75else
76ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
77-include $(DEPS)
78endif
79endif