2002-10-04 06:33:15 +04:00
|
|
|
#
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2002-10-04 06:33:15 +04:00
|
|
|
|
2012-08-04 22:26:44 +04:00
|
|
|
DEPTH = @DEPTH@
|
2002-10-04 06:33:15 +04:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
|
2003-01-17 05:44:55 +03:00
|
|
|
CSRCS += \
|
|
|
|
codesighs.c \
|
|
|
|
maptsvdifftool.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2002-10-18 04:04:54 +04:00
|
|
|
CSRCS += \
|
2002-10-04 06:33:15 +04:00
|
|
|
msmap2tsv.c \
|
2003-01-17 05:26:25 +03:00
|
|
|
msdump2symdb.c \
|
2003-01-17 05:44:55 +03:00
|
|
|
$(NULL)
|
|
|
|
else
|
|
|
|
CSRCS += \
|
2002-10-11 04:50:08 +04:00
|
|
|
nm2tsv.c \
|
2002-10-04 06:33:15 +04:00
|
|
|
$(NULL)
|
2003-01-17 05:44:55 +03:00
|
|
|
endif
|
2002-10-04 06:33:15 +04:00
|
|
|
|
2002-10-18 04:04:54 +04:00
|
|
|
SIMPLE_PROGRAMS = $(CSRCS:.c=$(BIN_SUFFIX))
|
2002-10-04 06:33:15 +04:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2002-12-15 01:53:31 +03:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2004-02-07 11:55:40 +03:00
|
|
|
OS_LIBS += \
|
2002-12-15 01:53:31 +03:00
|
|
|
imagehlp.lib \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2002-10-04 06:33:15 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|