]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/tools/gentest/Makefile.in
ICU-6.2.22.tar.gz
[apple/icu.git] / icuSources / tools / gentest / Makefile.in
... / ...
CommitLineData
1## Makefile.in for ICU - tools/gentest
2
3## Copyright (c) 1999-2004, International Business Machines Corporation and
4## others. All Rights Reserved.
5## Madhu Katragadda
6
7## Source directory information
8srcdir = @srcdir@
9top_srcdir = @top_srcdir@
10
11top_builddir = ../..
12
13include $(top_builddir)/icudefs.mk
14
15## Build directory information
16subdir = tools/gentest
17
18##
19
20## Extra files to remove for 'make clean'
21CLEANFILES = *~ $(DEPS)
22
23## Target information
24TARGET = gentest$(EXEEXT)
25
26CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil
27LIBS = $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
28
29OBJECTS = gentest.o genres32.o
30
31DEPS = $(OBJECTS:.o=.d)
32
33## List of phony targets
34.PHONY : all all-local install install-local clean clean-local \
35distclean distclean-local dist dist-local check \
36check-local
37
38## Clear suffix list
39.SUFFIXES :
40
41## List of standard targets
42all: all-local
43install: install-local
44clean: clean-local
45distclean : distclean-local
46dist: dist-local
47check: all check-local
48
49all-local: $(TARGET)
50
51install-local: all-local
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)
70
71ifeq (,$(MAKECMDGOALS))
72-include $(DEPS)
73else
74ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
75-include $(DEPS)
76endif
77endif
78
79