aboutsummaryrefslogtreecommitdiff
path: root/gold/Makefile.am
blob: 02a6da11f63722186e88ec9ea9294866f31a2c9d (plain)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Process this file with automake to generate Makefile.in

AUTOMAKE_OPTIONS =

SUBDIRS = po testsuite

tooldir = $(exec_prefix)/$(target_alias)

ACLOCAL_AMFLAGS = -I ../bfd -I ../config

AM_CXXFLAGS = $(WARN_CXXFLAGS) $(LFS_CXXFLAGS)

INCLUDES = -D_GNU_SOURCE \
	-I$(srcdir) -I$(srcdir)/../include -I$(srcdir)/../elfcpp \
	-DLOCALEDIR="\"$(datadir)/locale\"" \
	@INCINTL@

YFLAGS = -d

noinst_PROGRAMS = ld-new
noinst_LIBRARIES = libgold.a

CCFILES = \
	archive.cc \
	common.cc \
	defstd.cc \
	dirsearch.cc \
	dynobj.cc \
	fileread.cc \
	gold.cc \
	gold-threads.cc \
	layout.cc \
	object.cc \
	options.cc \
	output.cc \
	readsyms.cc \
	reloc.cc \
	resolve.cc \
	script.cc \
	symtab.cc \
	stringpool.cc \
	target-select.cc \
	workqueue.cc

HFILES = \
	archive.h \
	common.h \
	defstd.h \
	dirsearch.h \
	dynobj.h \
	fileread.h \
	gold.h \
	gold-threads.h \
	layout.h \
	object.h \
	options.h \
	output.h \
	readsyms.h \
	reloc.h \
	reloc-types.h \
	script.h \
	script-c.h \
	stringpool.h \
	symtab.h \
	target.h \
	target-reloc.h \
	target-select.h \
	workqueue.h

TARGETFILES = \
	i386.cc

YFILES = \
	yyscript.y

EXTRA_DIST = yyscript.c yyscript.h

libgold_a_SOURCES = $(CCFILES) $(HFILES) $(YFILES)

ld_new_SOURCES = main.cc $(TARGETFILES)
ld_new_DEPENDENCIES = libgold.a $(LIBINTL_DEP)
ld_new_LDADD = libgold.a $(LIBINTL)

# Use an explicit dependency for the bison generated header file.
script.$(OBJEXT): yyscript.h

# We have to build libgold.a before we run the tests.
check: libgold.a

.PHONY: install-exec-local

install-exec-local: ld-new$(EXEEXT)
	$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin
	n=`echo ld | sed '$(transform)'; \
	$(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(bindir)/$${n}$(EXEEXT); \
	if test "$(bindir)" != "$(tooldir)/bin"; then \
	  rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
	  ln $(DESTDIR)$(bindir)/$${n}$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
	    || $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
	fi

# We want install to imply install-info as per GNU standards, despite
# the cygnus option.
install-data-local: install-info

POTFILES= $(CCFILES) $(HFILES) $(TARGETFILES)

po/POTFILES.in: @MAINT@ Makefile
	for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
	  && mv tmp $(srcdir)/po/POTFILES.in