mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
26 lines
463 B
Makefile
26 lines
463 B
Makefile
top_builddir=../..
|
|
include $(top_builddir)/Makefile.config
|
|
|
|
OBJS = cookies.o dialogs.o path.o parser.o
|
|
PROG = parsetst
|
|
|
|
TEST_PROGS = \
|
|
cookies-t$(EXEEXT)
|
|
|
|
TESTDEPS = path.o
|
|
|
|
PARSETSTDEPS = \
|
|
$(top_builddir)/src/util/error.o \
|
|
$(top_builddir)/src/util/string.o
|
|
|
|
ifdef CONFIG_DEBUG
|
|
PARSETSTDEPS += $(top_builddir)/src/util/memdebug.o
|
|
endif
|
|
|
|
parsetst: $(PARSETSTDEPS) parser.o parsetst.o
|
|
$(call cmd,link)
|
|
|
|
CLEAN += parsetst.o
|
|
|
|
include $(top_srcdir)/Makefile.lib
|