makefile 421 B

12345678910111213141516171819202122
  1. # -*- make -*-
  2. BASE=..
  3. SUBDIR=apt-private
  4. # Header location
  5. HEADER_TARGETDIRS = apt-private
  6. # Bring in the default rules
  7. include ../buildlib/defaults.mak
  8. # The library name
  9. LIBRARY=apt-private
  10. MAJOR=0.0
  11. MINOR=0
  12. SLIBS=$(PTHREADLIB) -lapt-pkg
  13. CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
  14. SOURCE = $(sort $(wildcard *.cc))
  15. HEADERS = $(addprefix apt-private/,$(sort $(wildcard *.h)))
  16. include $(LIBRARY_H)