From a4f18138875498df6512c2bc88626835e168dedf Mon Sep 17 00:00:00 2001 From: "blythe%netscape.com" Date: Fri, 17 Jan 2003 02:44:55 +0000 Subject: [PATCH] Not part of a normal build. Try not to build tools on systems that won't use the tools. --- tools/codesighs/Makefile.in | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tools/codesighs/Makefile.in b/tools/codesighs/Makefile.in index f6630a179fb..a1e8f50d1b8 100644 --- a/tools/codesighs/Makefile.in +++ b/tools/codesighs/Makefile.in @@ -30,13 +30,21 @@ include $(DEPTH)/config/autoconf.mk REQUIRES = $(NULL) CSRCS += \ - msmap2tsv.c \ - msdump2symdb.c \ - nm2tsv.c \ codesighs.c \ maptsvdifftool.c \ $(NULL) +ifeq ($(OS_ARCH),WINNT) +CSRCS += \ + msmap2tsv.c \ + msdump2symdb.c \ + $(NULL) +else +CSRCS += \ + nm2tsv.c \ + $(NULL) +endif + SIMPLE_PROGRAMS = $(CSRCS:.c=$(BIN_SUFFIX)) include $(topsrcdir)/config/config.mk