* methods/rred.cc:
[ntk/apt.git] / apt-inst / makefile
CommitLineData
b2e465d6
AL
1# -*- make -*-
2BASE=..
3SUBDIR=apt-inst
4
5# Header location
6SUBDIRS = contrib deb
7HEADER_TARGETDIRS = apt-pkg
8
9# Bring in the default rules
10include ../buildlib/defaults.mak
11
a72d66d1
MV
12# The library name and version (indirectly used from init.h)
13include ../buildlib/libversion.mak
14
b2e465d6
AL
15# The library name
16LIBRARY=apt-inst
7427781d 17MAJOR=1.4
b2e465d6 18MINOR=0
87b192a0 19SLIBS=$(PTHREADLIB) -lapt-pkg
05eb7df0 20APT_DOMAIN:=libapt-inst$(MAJOR)
b2e465d6
AL
21
22# Source code for the contributed non-core things
23SOURCE = contrib/extracttar.cc contrib/arfile.cc
24
25# Source code for the main library
26SOURCE+= filelist.cc database.cc dirstream.cc extract.cc \
27 deb/dpkgdb.cc deb/debfile.cc
28
29# Public header files
30HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \
31 dpkgdb.h dirstream.h debfile.h
32
33HEADERS := $(addprefix apt-pkg/,$(HEADERS))
34include $(LIBRARY_H)