1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00
elinks/src/cookies/Makefile

26 lines
463 B
Makefile
Raw Normal View History

2005-10-20 02:00:35 +00:00
top_builddir=../..
include $(top_builddir)/Makefile.config
2005-09-16 02:53:54 +00:00
OBJS = cookies.o dialogs.o path.o parser.o
2005-12-28 16:16:39 +00:00
PROG = parsetst
2005-09-16 02:53:54 +00:00
TEST_PROGS = \
cookies-t$(EXEEXT)
TESTDEPS = path.o
2005-12-28 16:16:39 +00:00
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
2005-09-16 02:53:54 +00:00
include $(top_srcdir)/Makefile.lib