1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Added $(EXEEXT) for executables.

This commit is contained in:
Witold Filipczyk 2010-03-22 09:35:15 +01:00 committed by Witold Filipczyk
parent ef33a13713
commit d2513cdfbb
6 changed files with 8 additions and 7 deletions

View File

@ -33,6 +33,7 @@ includedir = @includedir@
DESTDIR =
EXEEXT = @EXEEXT@
# Support for rebuilding configure and Makefile.config
ACLOCAL = @ACLOCAL@

View File

@ -37,7 +37,7 @@ INCLUDES += -DBUILD_ID="\"$(BUILD_ID)\""
vernum.o: $(LIB_O_NAME)
elinks: $(LIB_O_NAME) vernum.o
elinks$(EXEEXT): $(LIB_O_NAME) vernum.o
$(call cmd,link)
# Place the TAGS file in the source directory so that, if the same
@ -59,7 +59,7 @@ tags:
.PHONY: TAGS tags
PROGS = elinks
PROGS = elinks$(EXEEXT)
CLEAN = vernum.o TAGS tags
include $(top_srcdir)/Makefile.lib

View File

@ -4,8 +4,8 @@ include $(top_builddir)/Makefile.config
# Disabled since it requires DOM_STACK_TRACE to be defined
# dom-select
TEST_PROGS = \
html-mangle \
sgml-parser
html-mangle$(EXEEXT) \
sgml-parser$(EXEEXT)
TESTDEPS = \
$(top_builddir)/src/dom/$(LIB_O_NAME)

View File

@ -7,7 +7,7 @@ OBJS-$(CONFIG_MIMETYPES) += mimetypes.o
OBJS = common.o default.o
TEST_PROGS = \
mailcap-cache
mailcap-cache$(EXEEXT)
# The dependencies are a bit funny here! I don't know why. Just remember to
# make clean before making the test. --jonas

View File

@ -4,7 +4,7 @@ include $(top_builddir)/Makefile.config
OBJS = ftp.o parse.o
TEST_PROGS = \
ftp-parser
ftp-parser$(EXEEXT)
TESTDEPS = \
$(top_builddir)/src/protocol/date.o \

View File

@ -2,7 +2,7 @@ top_builddir=../../..
include $(top_builddir)/Makefile.config
TEST_PROGS = \
uri-test
uri-test$(EXEEXT)
TESTDEPS = \
$(top_builddir)/src/protocol/protocol.o \