c0b280c118
Some changes were made to the API when making the documentation: - A few exported functions are now hidden, because they were only used internally in the library. - A few exported symbols were renamed to document them better than previously. - Cosmetic changes all along the way, as well as some fixes here and there. --HG-- extra : convert_revision : xtraeme%40gmail.com-20100121021019-onbsivlrhdb7t3ou
30 lines
925 B
Makefile
30 lines
925 B
Makefile
# Common variables.
|
|
|
|
PREFIX ?= /usr/local
|
|
SBINDIR ?= $(DESTDIR)$(PREFIX)/sbin
|
|
LIBDIR ?= $(DESTDIR)$(PREFIX)/lib
|
|
INCLUDEDIR ?= $(DESTDIR)$(PREFIX)/include
|
|
MANDIR ?= $(DESTDIR)$(PREFIX)/share/man/man8
|
|
TOPDIR ?= ..
|
|
INSTALL_STRIPPED ?= -s
|
|
|
|
LDFLAGS = -L$(TOPDIR)/lib
|
|
CPPFLAGS = -I$(TOPDIR)/include -D_XOPEN_SOURCE=600 -D_GNU_SOURCE
|
|
CPPFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGE_FILES
|
|
|
|
ifdef DEBUG
|
|
INSTALL_STRIPPED=
|
|
DEBUG_FLAGS = -g
|
|
CPPFLAGS += -DDEBUG
|
|
endif
|
|
|
|
WARNFLAGS = -pedantic -std=c99 -Wall -Wextra -Werror -Wshadow -Wformat=2
|
|
WARNFLAGS += -Wmissing-declarations -Wcomment -Wunused-macros -Wendif-labels
|
|
WARNFLAGS += -Wcast-qual -Wcast-align -Wstack-protector
|
|
CFLAGS = $(DEBUG_FLAGS) $(WARNFLAGS) -fPIC -DPIC -fstack-protector-all
|
|
SHAREDLIB_CFLAGS = -fvisibility=default
|
|
|
|
# Grr, hate the static libs!
|
|
STATIC_LIBS = -lprop -lpthread -larchive -lssl -lcrypto -ldl -lacl
|
|
STATIC_LIBS += -lattr -llzma -lbz2 -lz
|