~ubuntu-branches/ubuntu/feisty/elinks/feisty-updates

« back to all changes in this revision

Viewing changes to src/cookies/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-30 08:57:43 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060630085743-l81fgbw9dehvl1ds
Tags: 0.11.1-1ubuntu1
* Merge to Debian unstable.
* Removed gnutls12 porting, this is upstream now.
* Only Ubuntu changes left:
  - Killed type-handling.
  - Add X-Ubuntu-Gettext-Domain to .desktop files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
top_builddir=../..
 
2
include $(top_builddir)/Makefile.config
 
3
 
 
4
OBJS = cookies.o dialogs.o parser.o
 
5
PROG = parsetst
 
6
 
 
7
PARSETSTDEPS = \
 
8
 $(top_builddir)/src/util/error.o \
 
9
 $(top_builddir)/src/util/string.o
 
10
 
 
11
ifdef CONFIG_DEBUG
 
12
PARSETSTDEPS += $(top_builddir)/src/util/memdebug.o
 
13
endif
 
14
 
 
15
parsetst: $(PARSETSTDEPS) parser.o parsetst.o
 
16
        $(call cmd,link)
 
17
 
 
18
CLEAN += parsetst.o
 
19
 
 
20
include $(top_srcdir)/Makefile.lib