summaryrefslogtreecommitdiff
path: root/apt-private/makefile
blob: 9a3fbdb2998f534d1fc94b8d0fb1d5507094f071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- make -*-
BASE=..
SUBDIR=apt-private

# Header location
HEADER_TARGETDIRS = apt-private

# Bring in the default rules
include ../buildlib/defaults.mak

# The library name
LIBRARY=apt-private
MAJOR=0.0
MINOR=0
SLIBS=$(PTHREADLIB) -lapt-pkg
CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden

SOURCE = $(wildcard *.cc)
HEADERS = $(addprefix apt-private/,$(wildcard *.h))

include $(LIBRARY_H)