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 =
|
DESTDIR =
|
||||||
|
|
||||||
|
EXEEXT = @EXEEXT@
|
||||||
|
|
||||||
# Support for rebuilding configure and Makefile.config
|
# Support for rebuilding configure and Makefile.config
|
||||||
ACLOCAL = @ACLOCAL@
|
ACLOCAL = @ACLOCAL@
|
||||||
|
@ -37,7 +37,7 @@ INCLUDES += -DBUILD_ID="\"$(BUILD_ID)\""
|
|||||||
|
|
||||||
vernum.o: $(LIB_O_NAME)
|
vernum.o: $(LIB_O_NAME)
|
||||||
|
|
||||||
elinks: $(LIB_O_NAME) vernum.o
|
elinks$(EXEEXT): $(LIB_O_NAME) vernum.o
|
||||||
$(call cmd,link)
|
$(call cmd,link)
|
||||||
|
|
||||||
# Place the TAGS file in the source directory so that, if the same
|
# Place the TAGS file in the source directory so that, if the same
|
||||||
@ -59,7 +59,7 @@ tags:
|
|||||||
|
|
||||||
.PHONY: TAGS tags
|
.PHONY: TAGS tags
|
||||||
|
|
||||||
PROGS = elinks
|
PROGS = elinks$(EXEEXT)
|
||||||
CLEAN = vernum.o TAGS tags
|
CLEAN = vernum.o TAGS tags
|
||||||
|
|
||||||
include $(top_srcdir)/Makefile.lib
|
include $(top_srcdir)/Makefile.lib
|
||||||
|
@ -4,8 +4,8 @@ include $(top_builddir)/Makefile.config
|
|||||||
# Disabled since it requires DOM_STACK_TRACE to be defined
|
# Disabled since it requires DOM_STACK_TRACE to be defined
|
||||||
# dom-select
|
# dom-select
|
||||||
TEST_PROGS = \
|
TEST_PROGS = \
|
||||||
html-mangle \
|
html-mangle$(EXEEXT) \
|
||||||
sgml-parser
|
sgml-parser$(EXEEXT)
|
||||||
|
|
||||||
TESTDEPS = \
|
TESTDEPS = \
|
||||||
$(top_builddir)/src/dom/$(LIB_O_NAME)
|
$(top_builddir)/src/dom/$(LIB_O_NAME)
|
||||||
|
@ -7,7 +7,7 @@ OBJS-$(CONFIG_MIMETYPES) += mimetypes.o
|
|||||||
OBJS = common.o default.o
|
OBJS = common.o default.o
|
||||||
|
|
||||||
TEST_PROGS = \
|
TEST_PROGS = \
|
||||||
mailcap-cache
|
mailcap-cache$(EXEEXT)
|
||||||
|
|
||||||
# The dependencies are a bit funny here! I don't know why. Just remember to
|
# The dependencies are a bit funny here! I don't know why. Just remember to
|
||||||
# make clean before making the test. --jonas
|
# make clean before making the test. --jonas
|
||||||
|
@ -4,7 +4,7 @@ include $(top_builddir)/Makefile.config
|
|||||||
OBJS = ftp.o parse.o
|
OBJS = ftp.o parse.o
|
||||||
|
|
||||||
TEST_PROGS = \
|
TEST_PROGS = \
|
||||||
ftp-parser
|
ftp-parser$(EXEEXT)
|
||||||
|
|
||||||
TESTDEPS = \
|
TESTDEPS = \
|
||||||
$(top_builddir)/src/protocol/date.o \
|
$(top_builddir)/src/protocol/date.o \
|
||||||
|
@ -2,7 +2,7 @@ top_builddir=../../..
|
|||||||
include $(top_builddir)/Makefile.config
|
include $(top_builddir)/Makefile.config
|
||||||
|
|
||||||
TEST_PROGS = \
|
TEST_PROGS = \
|
||||||
uri-test
|
uri-test$(EXEEXT)
|
||||||
|
|
||||||
TESTDEPS = \
|
TESTDEPS = \
|
||||||
$(top_builddir)/src/protocol/protocol.o \
|
$(top_builddir)/src/protocol/protocol.o \
|
||||||
|
Loading…
Reference in New Issue
Block a user