]> git.saurik.com Git - apt.git/blame - apt-pkg/makefile
glibc/libstdc++ dependency patches
[apt.git] / apt-pkg / makefile
CommitLineData
094a497d
AL
1# -*- make -*-
2BASE=..
3164dff9 3SUBDIR=apt-pkg
094a497d
AL
4
5# Header location
6SUBDIRS = deb contrib
7HEADER_TARGETDIRS = apt-pkg
8
9# Bring in the default rules
10include ../buildlib/defaults.mak
11
b2e465d6 12# The library name, don't forget to update init.h
094a497d 13LIBRARY=apt-pkg
a5b7cd82 14LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER)
b2e465d6 15MAJOR=3.1
4310ed4d 16MINOR=1
6f27a7fc 17SLIBS=$(PTHREADLIB)
094a497d
AL
18
19# Source code for the contributed non-core things
20SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
17a10bf5 21 contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
b2e465d6
AL
22 contrib/md5.cc contrib/cdromutl.cc contrib/crc-16.cc \
23 contrib/fileutl.cc
24HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \
25 md5.h crc-16.h cdromutl.h strutl.h sptr.h
404ec98e 26
b2e465d6
AL
27# Source code for the core main library
28SOURCE+= pkgcache.cc version.cc depcache.cc \
094a497d 29 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
b2e465d6 30 pkgrecords.cc algorithms.cc acquire.cc\
c9a64a4d 31 acquire-worker.cc acquire-method.cc init.cc clean.cc \
b2e465d6
AL
32 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
33 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc
34HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
35 orderlist.h sourcelist.h packagemanager.h tagfile.h \
36 init.h pkgcache.h version.h progress.h pkgrecords.h \
37 acquire.h acquire-worker.h acquire-item.h acquire-method.h \
38 clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
39 pkgsystem.h indexfile.h
0118833a 40
1bc849af 41# Source code for the debian specific components
b2e465d6
AL
42# In theory the deb headers do not need to be exported..
43SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
44 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
45 deb/debindexfile.cc deb/debindexfile.cc
46HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
47 deblistparser.h debsystem.h debindexfile.h
0118833a 48
094a497d
AL
49HEADERS := $(addprefix apt-pkg/,$(HEADERS))
50
51# Private header files
cdcc6d34 52HEADERS+= system.h
094a497d
AL
53
54include $(LIBRARY_H)