-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathMakefile.in
82 lines (60 loc) · 1.78 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
## ******************************************************************************
## *
## * Copyright (C) 1999-2000, International Business Machines
## * Corporation and others. All Rights Reserved.
## *
## *******************************************************************************
## Makefile.in for ICU - icuapps/dumpdat
## Steven R. Loomis
srcdir = @srcdir@
top_srcdir = @top_srcdir@
subdir= dumpdat
top_builddir=..
include $(top_builddir)/icuapps.mk
## Target information
TARGET = dumpdat
OBJECTS = dumpdat.o
# upkg.o
#CPPFLAGS +=
CPPFLAGS+=$(CPPFLAGS_APPUTIL)
# enable the following if you have some kind of readline function
#####
#CPPFLAGS += -DHAVE_READLINE -I/sw/include
#LDFLAGS += -L/sw/lib -lreadline
#####
# Enable the following if you have dlopen()
#####
#CPPFLAGS += -DHAVE_DL -I/sw/include
#LDFLAGS += -L/sw/lib -ldl -bind_at_load
####
-include Makefile.local
## List of standard targets
all: all-local
install: install-local
clean: clean-local
distclean : distclean-local
dist: dist-local
check: check-local
## List of phony targets
.PHONY : all all-local install install-local clean clean-local \
distclean distclean-local target-clean-local dist dist-local check \
check-local
install-local: all-local
$(MKINSTALLDIRS) $(DESTDIR)$(BINDIR)
$(INSTALL) $(TARGET) $(DESTDIR)$(BINDIR)/$(TARGET)
all-local: $(TARGET)
dist-local:
target-clean-local:
rm -f $(TARGET)
clean-local: target-clean-local
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
rm -f $(OBJECTS)
distclean-local: clean-local
rm -f Makefile
check-local:
$(INVOKE) ./$(TARGET) icu unames
$(TARGET): $(OBJECTS)
$(LINK.cc) -o $@ $^ $(ICULIBS)
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status