1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00
elinks/src/cookies/Makefile

21 lines
401 B
Makefile
Raw 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 parser.o
2005-12-28 11:16:39 -05:00
PROG = parsetst
2005-09-15 22:53:54 -04:00
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