]>
Commit | Line | Data |
---|---|---|
da6ee469 JF |
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 | ||
0e5943eb JF |
12 | # The library name and version (indirectly used from init.h) |
13 | include ../buildlib/libversion.mak | |
14 | ||
da6ee469 JF |
15 | # The library name |
16 | LIBRARY=apt-inst | |
da6ee469 JF |
17 | MAJOR=1.1 |
18 | MINOR=0 | |
acdafb44 | 19 | SLIBS=$(PTHREADLIB) -lapt-pkg $(INTLLIBS) |
da6ee469 JF |
20 | APT_DOMAIN:=libapt-inst$(MAJOR) |
21 | ||
22 | # Source code for the contributed non-core things | |
23 | SOURCE = contrib/extracttar.cc contrib/arfile.cc | |
24 | ||
25 | # Source code for the main library | |
26 | SOURCE+= filelist.cc database.cc dirstream.cc extract.cc \ | |
27 | deb/dpkgdb.cc deb/debfile.cc | |
28 | ||
29 | # Public header files | |
30 | HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \ | |
31 | dpkgdb.h dirstream.h debfile.h | |
32 | ||
33 | HEADERS := $(addprefix apt-pkg/,$(HEADERS)) | |
34 | include $(LIBRARY_H) |