]>
Commit | Line | Data |
---|---|---|
b9179170 MV |
1 | # -*- make -*- |
2 | BASE=.. | |
3 | SUBDIR=apt-private | |
4 | ||
5 | # Header location | |
6 | HEADER_TARGETDIRS = apt-private | |
7 | ||
8 | # Bring in the default rules | |
9 | include ../buildlib/defaults.mak | |
10 | ||
b9179170 MV |
11 | # The library name |
12 | LIBRARY=apt-private | |
13 | MAJOR=0.0 | |
14 | MINOR=0 | |
15 | SLIBS=$(PTHREADLIB) -lapt-pkg | |
63ff4208 | 16 | CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden |
b9179170 | 17 | |
53c3a8fa DK |
18 | SOURCE = $(wildcard *.cc) |
19 | HEADERS = $(addprefix apt-private/,$(wildcard *.h)) | |
b9179170 | 20 | |
b9179170 | 21 | include $(LIBRARY_H) |