36 lines
706 B
Makefile
36 lines
706 B
Makefile
|
pkgconfig_DATA = libpipecolors.pc
|
||
|
|
||
|
AM_LDFLAGS = $(LDFLAGS)
|
||
|
|
||
|
ACLOCAL_AMFLAGS = -I m4 -I config
|
||
|
LIBTOOL_DEPS = @LIBTOOL_DEPS@
|
||
|
|
||
|
lib_LTLIBRARIES = libpipecolors.la
|
||
|
libpipecolors_la_SOURCES = libpipecolors.cc
|
||
|
libpipecolors_la_LIBS = -lboost_regex
|
||
|
libpipecolors_la_CFLAGS = -fPIC -DPIC -pthread
|
||
|
|
||
|
if PC_REMOVE_INVALID
|
||
|
AM_CPPFLAGSINVALID = -DPC_REMOVE_INVALID
|
||
|
endif
|
||
|
|
||
|
AM_CPPFLAGS = $(AM_CPPFLAGSINVALID)
|
||
|
|
||
|
libpipecolors_la_LDFLAGS = -module \
|
||
|
-release ${PIPECOLORS_VERSION}
|
||
|
|
||
|
include_HEADERS = pipecolors.h
|
||
|
noinst_HEADERS = config.h
|
||
|
|
||
|
MAINTAINERCLEANFILES = \
|
||
|
aclocal.m4 \
|
||
|
config.h \
|
||
|
config.h.in \
|
||
|
config.h.in~ \
|
||
|
config.log \
|
||
|
stamp-h1 \
|
||
|
Makefile.in
|
||
|
|
||
|
libtool: $(LIBTOOL_DEPS)
|
||
|
$(SHELL) ../config.status libtool
|