~ubuntu-branches/debian/experimental/apt/experimental

« back to all changes in this revision

Viewing changes to apt-inst/makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-02-18 22:07:23 UTC
  • mfrom: (9.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100218220723-zb7zdh6fmsmp30tr
Tags: 0.7.26~exp2
fix crash when LANGUAGE is not set

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
# Header location
6
6
SUBDIRS = contrib deb
7
 
HEADER_TARGETDIRS = apt-inst
 
7
HEADER_TARGETDIRS = apt-pkg
8
8
 
9
9
# Bring in the default rules
10
10
include ../buildlib/defaults.mak
11
11
 
 
12
# The library name and version (indirectly used from init.h)
 
13
include ../buildlib/libversion.mak
 
14
 
12
15
# The library name
13
16
LIBRARY=apt-inst
14
 
LIBEXT=$(LIBSTDCPP_VER)
15
 
MAJOR=1.1
 
17
MAJOR=1.2
16
18
MINOR=0
17
19
SLIBS=$(PTHREADLIB) -lapt-pkg
18
20
APT_DOMAIN:=libapt-inst$(MAJOR)
25
27
         deb/dpkgdb.cc deb/debfile.cc
26
28
 
27
29
# Public header files
28
 
HEADERS = filelist.h database.h extract.h dirstream.h \
29
 
          deb/dpkgdb.h deb/debfile.h \
30
 
          contrib/arfile.h contrib/extracttar.h
31
 
 
32
 
HEADERS := $(addprefix apt-inst/,$(HEADERS))
33
 
 
 
30
HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \
 
31
          dpkgdb.h dirstream.h debfile.h
 
32
 
 
33
HEADERS := $(addprefix apt-pkg/,$(HEADERS))
34
34
include $(LIBRARY_H)