1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00
elinks/src/cookies/Makefile

26 lines
463 B
Makefile
Raw Permalink Normal View History

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