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:
parent
ef33a13713
commit
d2513cdfbb
@ -33,6 +33,7 @@ includedir = @includedir@
|
||||
|
||||
DESTDIR =
|
||||
|
||||
EXEEXT = @EXEEXT@
|
||||
|
||||
# Support for rebuilding configure and Makefile.config
|
||||
ACLOCAL = @ACLOCAL@
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user