diff options
author | Christopher Faylor <me@cgf.cx> | 2002-02-27 16:10:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-02-27 16:10:17 +0000 |
commit | 67763c0ca21b2f4d175d77973ed22b38884bf39c (patch) | |
tree | 5769a862e4835a80cb5f841f83a1162702ce8d90 /winsup/utils/Makefile.in | |
parent | e3c6baed8aa1d03ce0a0341ba16b30a38aa64d85 (diff) | |
download | cygnal-67763c0ca21b2f4d175d77973ed22b38884bf39c.tar.gz cygnal-67763c0ca21b2f4d175d77973ed22b38884bf39c.tar.bz2 cygnal-67763c0ca21b2f4d175d77973ed22b38884bf39c.zip |
* ssp.c (help_desk): Fix compiler warning. Christopher Faylor <cgf@redhat.com>
Change appropriate globals to statics throughout.
* cygcheck.cc (usage): Simplify usage output. Generalize to allow use for
help.
(longopts): Add version option.
(opts): Add 'V" version option.
(print_version): New function.
(main): Accommodate new version option. Accommodate usage parameter changes.
Use usage to output help message.
* Makefile.in (CXXFLAGS): Add override so that HAVE_DECL_GETOPT is defined.
(libbfd): Use -B rather than -L so that bfd from build directory is correctly
found.
(libintl): Ditto.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r-- | winsup/utils/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index 627276dce..615ee97da 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -32,14 +32,14 @@ CXX_FOR_TARGET:=$(CXX) CFLAGS:=@CFLAGS@ CXXFLAGS:=@CXXFLAGS@ -CXXFLAGS+=-fno-exceptions -fno-rtti -DHAVE_DECL_GETOPT=0 +override CXXFLAGS+=-fno-exceptions -fno-rtti -DHAVE_DECL_GETOPT=0 include $(srcdir)/../Makefile.common MINGW_INCLUDES:=$(MINGW_INCLUDES) $(w32api_include) -I$(updir) -libbfd:=${shell $(CC) -L$(bupdir2)/bfd --print-file-name=libbfd.a} -libintl:=${shell $(CC) -L$(bupdir2)/intl --print-file-name=libintl.a} +libbfd:=${shell $(CC) -B$(bupdir2)/bfd/ --print-file-name=libbfd.a} +libintl:=${shell $(CC) -B$(bupdir2)/intl/ --print-file-name=libintl.a} build_dumper:=${shell test -r $(libbfd) && test -r ${libintl} && echo 1} DUMPER_INCLUDES:=-I$(bupdir2)/bfd -I$(updir1)/include |