1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
elinks/src/cookies/Makefile

26 lines
463 B
Makefile
Raw Normal View History

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