OSDN Git Service

* Makefile.in: Tweak to work better with new utils/mingw front-end.
[pf3gnuchains/pf3gnuchains3x.git] / winsup / utils / Makefile.in
1 # Makefile for Cygwin utilities
2 # Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 # 2005, 2006, 2007, 2008 Red Hat, Inc.
4
5 # This file is part of Cygwin.
6
7 # This software is a copyrighted work licensed under the terms of the
8 # Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9 # details.
10
11 SHELL:=@SHELL@
12
13 srcdir:=@srcdir@
14 VPATH:=@srcdir@
15 prefix:=@prefix@
16 exec_prefix:=@exec_prefix@
17
18 bindir:=@bindir@
19 program_transform_name:=@program_transform_name@
20
21 override INSTALL:=@INSTALL@
22 override INSTALL_PROGRAM:=@INSTALL_PROGRAM@
23 override INSTALL_DATA:=@INSTALL_DATA@
24
25 EXEEXT:=@EXEEXT@
26 EXEEXT_FOR_BUILD:=@EXEEXT_FOR_BUILD@
27
28 CC:=@CC@
29 CC_FOR_TARGET:=$(CC)
30 CXX:=@CXX@
31 CXX_FOR_TARGET:=$(CXX)
32
33 CFLAGS:=@CFLAGS@
34 CXXFLAGS:=@CXXFLAGS@
35 override CXXFLAGS+=-fno-exceptions -fno-rtti -DHAVE_DECL_GETOPT=0
36
37 include $(srcdir)/../Makefile.common
38
39 .SUFFIXES:
40 .NOEXPORT:
41 .PHONY: all install clean realclean warn_dumper warn_cygcheck_zlib
42
43 ALL_LDLIBS     := -lnetapi32 -ladvapi32
44 ALL_LDFLAGS    := -Wl,--enable-auto-import -B$(newlib_build)/libc -B$(w32api_lib) $(LDFLAGS) $(ALL_LDLIBS)
45 ALL_DEP_LDLIBS := $(cygwin_build)/libcygwin.a ${patsubst -l%,\
46                     $(w32api_lib)/lib%.a,$(ALL_LDLIBS) -lkernel32 -luser32}
47
48 MINGW_LIB        := $(mingw_build)/libmingw32.a
49 MINGW_LDLIBS     := $(ALL_LDLIBS) $(MINGW_LIB)
50 MINGW_DEP_LDLIBS := $(ALL_DEP_LDLIBS) $(MINGW_LIB)
51 MINGW_CXX        := ${srcdir}/mingw ${CXX} -I${updir}
52
53 # List all binaries to be linked in Cygwin mode.  Each binary on this list
54 # must have a corresponding .o of the same name.
55 CYGWIN_BINS := ${addsuffix .exe,cygpath getfacl kill mkgroup \
56         mkpasswd mount passwd ps regtool setfacl setmetamode ssp umount}
57
58 # List all binaries to be linked in MinGW mode.  Each binary on this list
59 # must have a corresponding .o of the same name.
60 MINGW_BINS := ${addsuffix .exe,strace cygcheck}
61
62 # List all objects to be compiled in MinGW mode.  Any object not on this
63 # list will will be compiled in Cygwin mode implicitly, so there is no
64 # need for a CYGWIN_OBJS.
65 MINGW_OBJS := bloda.o cygcheck.o dump_setup.o path.o strace.o
66
67 # If a binary should link in any objects besides the .o with the same
68 # name as the binary, then list those here.
69 strace.exe: path.o
70 cygcheck.exe: bloda.o path.o dump_setup.o
71
72 # Provide any necessary per-target variable overrides.
73 cygcheck.exe: MINGW_LDFLAGS += -lntdll
74 cygpath.exe: ALL_LDFLAGS += -lntdll
75
76 # Check for dumper's requirements and enable it if found.
77 LIBICONV := @libiconv@
78 libbfd   := ${shell $(CC) -B$(bupdir2)/bfd/ --print-file-name=libbfd.a}
79 libintl  := ${shell $(CC) -B$(bupdir2)/intl/ --print-file-name=libintl.a}
80 build_dumper := ${shell test -r $(libbfd) -a -r $(libintl) -a -n "$(LIBICONV)" && echo 1}
81 ifdef build_dumper
82 CYGWIN_BINS += dumper.exe
83 dumper.o module_info.o parse_pe.o: CXXFLAGS += -I$(bupdir2)/bfd -I$(updir1)/include
84 dumper.o parse_pe.o: dumper.h
85 dumper.exe: module_info.o parse_pe.o
86 dumper.exe: ALL_LDFLAGS += ${libbfd} ${libintl} -L$(bupdir1)/libiberty $(LIBICONV) -liberty
87 else
88 all: warn_dumper
89 endif
90
91 # Check for availability of a MinGW libz and enable for cygcheck.
92 libz:=${shell x=$$(${MINGW_CXX} --print-file-name=libz.a); cd $$(dirname $$x); dir=$$(pwd); case "$$dir" in *mingw*) echo $$dir/libz.a ;; esac}
93 ifdef libz
94 zlib_h  := -include ${patsubst %/lib/mingw/libz.a,%/include/zlib.h,${patsubst %/lib/libz.a,%/include/zlib.h,$(libz)}}
95 zconf_h := ${patsubst %/zlib.h,%/zconf.h,$(zlib_h)}
96 dump_setup.o: MINGW_CXXFLAGS += $(zconf_h) $(zlib_h)
97 cygcheck.exe: MINGW_LDFLAGS += $(libz)
98 else
99 all: warn_cygcheck_zlib
100 endif
101
102 all: Makefile $(CYGWIN_BINS) $(MINGW_BINS)
103
104 # test harness support (note: the "MINGW_BINS +=" should come after the
105 # "all:" above so that the testsuite is not run for "make" but only
106 # "make check".)
107 MINGW_BINS += testsuite.exe
108 MINGW_OBJS += path-testsuite.o testsuite.o
109 testsuite.exe: path-testsuite.o
110 path-testsuite.cc: path.cc ; @test -L $@ || ln -sf ${filter %.cc,$^} $@
111 path-testsuite.o: MINGW_CXXFLAGS += -DTESTSUITE
112 # this is necessary because this .c lives in the build dir instead of src
113 path-testsuite.o: MINGW_CXX := ${patsubst -I.,-I$(utils_source),$(MINGW_CXX)}
114 path-testsuite.cc path.cc testsuite.cc: testsuite.h
115 check: testsuite.exe ; $(<D)/$(<F)
116
117 # the rest of this file contains generic rules
118
119 # how to compile a MinGW object
120 $(MINGW_OBJS): %.o: %.cc
121 ifdef VERBOSE
122         $(MINGW_CXX) $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) $<
123 else
124         @echo $(MINGW_CXX) $c $(MINGW_CXXFLAGS) ... $(*F).cc;\
125         $(MINGW_CXX) $c -o $(@D)/$(basename $@)$o $(MINGW_CXXFLAGS) $<
126 endif
127
128 # how to link a MinGW binary
129 $(MINGW_BINS): %.exe: %.o
130 ifdef VERBOSE
131         $(MINGW_CXX) $(MINGW_CXXFLAGS) -o $@ ${filter %.o,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS)
132 else
133         @echo $(MINGW_CXX) -o $@ ${filter %.o,$^} ${filter-out -B%, $(MINGW_CXXFLAGS) $(MINGW_LDFLAGS)};\
134         $(MINGW_CXX) $(MINGW_CXXFLAGS) -o $@ ${filter %.o,$^} -B$(mingw_build)/ $(MINGW_LDFLAGS)
135 endif
136
137 # how to link a Cygwin binary
138 $(CYGWIN_BINS): %.exe: %.o 
139 ifdef VERBOSE
140         $(CXX) -o $@ ${filter %.o,$^} -B$(cygwin_build)/ $(ALL_LDFLAGS)
141 else
142         @echo $(CXX) -o $@ ${filter %.o,$^} ... ${filter-out -B%, $(ALL_LDFLAGS)};\
143         $(CXX) -o $@ ${filter %.o,$^} -B$(cygwin_build)/ $(ALL_LDFLAGS)
144 endif
145
146 # note: how to compile a Cygwin object is covered by the pattern rule in Makefile.common
147
148 # these dependencies ensure that the required in-tree libs are built first
149 $(MINGW_BINS): $(MINGW_DEP_LDLIBS)
150 $(CYGWIN_BINS): $(ALL_DEP_LDLIBS)
151
152 clean:
153         rm -f *.o $(CYGWIN_BINS) $(MINGW_BINS) path-testsuite.cc testsuite.exe
154
155 realclean: clean
156         rm -f Makefile config.cache
157
158 install: all
159         $(SHELL) $(updir1)/mkinstalldirs $(bindir)
160         for i in $(CYGWIN_BINS) ${filter-out testsuite.exe,$(MINGW_BINS)} ; do \
161           n=`echo $$i | sed '$(program_transform_name)'`; \
162           $(INSTALL_PROGRAM) $$i $(bindir)/$$n; \
163         done
164
165 $(cygwin_build)/libcygwin.a: $(cygwin_build)/Makefile
166         @$(MAKE) -C $(@D) $(@F)
167
168 $(MINGW_LIB): $(mingw_build)/Makefile
169         @$(MAKE) -C $(@D) $(@F)
170
171 warn_dumper:
172         @echo '*** Not building dumper.exe since some required libraries are'
173         @echo '*** missing: libbfd.a and libintl.a.'
174         @echo '*** If you need this program, check out the naked-bfd and naked-intl'
175         @echo '*** sources from sourceware.org.  Then, configure and build these'
176         @echo '*** libraries.  Otherwise, you can safely ignore this warning.'
177
178 warn_cygcheck_zlib:
179         @echo '*** Building cygcheck without package content checking due to missing mingw libz.a.'