Bumped libapt version and excluded eglibc from SONAME. (Closes: #448249)
[ntk/apt.git] / apt-inst / makefile
1 # -*- make -*-
2 BASE=..
3 SUBDIR=apt-inst
4
5 # Header location
6 SUBDIRS = contrib deb
7 HEADER_TARGETDIRS = apt-pkg
8
9 # Bring in the default rules
10 include ../buildlib/defaults.mak
11
12 # The library name
13 LIBRARY=apt-inst
14 MAJOR=1.2
15 MINOR=0
16 SLIBS=$(PTHREADLIB) -lapt-pkg
17 APT_DOMAIN:=libapt-inst$(MAJOR)
18
19 # Source code for the contributed non-core things
20 SOURCE = contrib/extracttar.cc contrib/arfile.cc
21
22 # Source code for the main library
23 SOURCE+= filelist.cc database.cc dirstream.cc extract.cc \
24 deb/dpkgdb.cc deb/debfile.cc
25
26 # Public header files
27 HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \
28 dpkgdb.h dirstream.h debfile.h
29
30 HEADERS := $(addprefix apt-pkg/,$(HEADERS))
31 include $(LIBRARY_H)