]> git.saurik.com Git - apt.git/blob - apt-pkg/makefile
* Fix typo in error message when encountering unknown t...
[apt.git] / apt-pkg / makefile
1 # -*- make -*-
2 BASE=..
3 SUBDIR=apt-pkg
4
5 # Header location
6 SUBDIRS = deb contrib
7 HEADER_TARGETDIRS = apt-pkg
8
9 # Bring in the default rules
10 include ../buildlib/defaults.mak
11
12 # The library name, don't forget to update init.h and the copy in
13 # methods/makefile - FIXME
14 LIBRARY=apt-pkg
15 LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER)
16 MAJOR=3.3
17 MINOR=0
18 SLIBS=$(PTHREADLIB) $(INTLLIBS)
19 APT_DOMAIN:=libapt-pkg$(MAJOR)
20
21 # Source code for the contributed non-core things
22 SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
23 contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
24 contrib/md5.cc contrib/sha1.cc contrib/hashes.cc \
25 contrib/cdromutl.cc contrib/crc-16.cc \
26 contrib/fileutl.cc
27 HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \
28 md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h hashes.h
29
30 # Source code for the core main library
31 SOURCE+= pkgcache.cc version.cc depcache.cc \
32 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
33 pkgrecords.cc algorithms.cc acquire.cc\
34 acquire-worker.cc acquire-method.cc init.cc clean.cc \
35 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
36 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc
37 HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
38 orderlist.h sourcelist.h packagemanager.h tagfile.h \
39 init.h pkgcache.h version.h progress.h pkgrecords.h \
40 acquire.h acquire-worker.h acquire-item.h acquire-method.h \
41 clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
42 pkgsystem.h indexfile.h
43
44 # Source code for the debian specific components
45 # In theory the deb headers do not need to be exported..
46 SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
47 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
48 deb/debindexfile.cc deb/debindexfile.cc
49 HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
50 deblistparser.h debsystem.h debindexfile.h
51
52 HEADERS := $(addprefix apt-pkg/,$(HEADERS))
53
54 # Private header files
55 HEADERS+= system.h
56
57 include $(LIBRARY_H)