More SHA-1 prep
[ntk/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
13 LIBRARY=apt-pkg
14 LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER)
15 MAJOR=3.1
16 MINOR=3
17 SLIBS=$(PTHREADLIB)
18
19 # Source code for the contributed non-core things
20 SOURCE = contrib/mmap.cc contrib/error.cc contrib/strutl.cc \
21 contrib/configuration.cc contrib/progress.cc contrib/cmndline.cc \
22 contrib/md5.cc contrib/sha1.cc contrib/hashes.cc \
23 contrib/cdromutl.cc contrib/crc-16.cc \
24 contrib/fileutl.cc
25 HEADERS = mmap.h error.h configuration.h fileutl.h cmndline.h \
26 md5.h crc-16.h cdromutl.h strutl.h sptr.h sha1.h hashes.h
27
28 # Source code for the core main library
29 SOURCE+= pkgcache.cc version.cc depcache.cc \
30 orderlist.cc tagfile.cc sourcelist.cc packagemanager.cc \
31 pkgrecords.cc algorithms.cc acquire.cc\
32 acquire-worker.cc acquire-method.cc init.cc clean.cc \
33 srcrecords.cc cachefile.cc versionmatch.cc policy.cc \
34 pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc
35 HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \
36 orderlist.h sourcelist.h packagemanager.h tagfile.h \
37 init.h pkgcache.h version.h progress.h pkgrecords.h \
38 acquire.h acquire-worker.h acquire-item.h acquire-method.h \
39 clean.h srcrecords.h cachefile.h versionmatch.h policy.h \
40 pkgsystem.h indexfile.h
41
42 # Source code for the debian specific components
43 # In theory the deb headers do not need to be exported..
44 SOURCE+= deb/deblistparser.cc deb/debrecords.cc deb/dpkgpm.cc \
45 deb/debsrcrecords.cc deb/debversion.cc deb/debsystem.cc \
46 deb/debindexfile.cc deb/debindexfile.cc
47 HEADERS+= debversion.h debsrcrecords.h dpkgpm.h debrecords.h \
48 deblistparser.h debsystem.h debindexfile.h
49
50 HEADERS := $(addprefix apt-pkg/,$(HEADERS))
51
52 # Private header files
53 HEADERS+= system.h
54
55 include $(LIBRARY_H)