1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/dom/test/Makefile
Jonas Fonseca 1b71368459 Add proof-of-concept stand-alone test binary which just prints Hello World
May it multiply in great numbers and help to stabilize the DOM
implementation.
2005-12-28 17:10:01 +01:00

24 lines
499 B
Makefile

top_builddir=../../..
include $(top_builddir)/Makefile.config
PROG = sgml-parser
TESTDEPS = \
$(top_builddir)/src/dom/lib.o \
$(top_builddir)/src/util/error.o \
$(top_builddir)/src/osdep/stub.o \
$(top_builddir)/src/util/hash.o \
$(top_builddir)/src/util/string.o \
$(top_builddir)/src/util/memdebug.o \
$(top_builddir)/src/util/memory.o
sgml-parser: $(TESTDEPS) sgml-parser.o
$(call cmd,link)
test: sgml-parser
./sgml-parser
CLEAN += sgml-parser.o
include $(top_srcdir)/Makefile.lib