SHELL = /bin/sh RUDIMENTS_VERSION = 0.31 SONAME_VERSION_INFO=1:0:0 prefix = exec_prefix = ${prefix} bindir = ${exec_prefix}/bin includedir = ${prefix}/include libdir = ${exec_prefix}/lib datadir = ${prefix}/share docdir = ${datadir}/doc/rudiments # compiler to use CXX = c++ # archiver to use AR = ar # includes and defines BASECPPFLAGS = -Wall -D_REENTRANT -D_THREAD_SAFE -D__EXTENSIONS__ -pthread -I/usr/local/include # debug and optimization flags (-g, -O2, etc.) # NOTE: -FPIC gets added if we're not using libtool CXXFLAGS = -fno-common -pipe -Wno-long-double # linker flags LDFLAGS = -rpath=/usr/lib:/usr/local/lib # libtool command LIBTOOL = $(SHELL) /usr/local/bin/libtool # install command LTINSTALL = $(LIBTOOL) --mode=install $(top_builddir)/install-sh -c INSTALL = $(top_builddir)/install-sh -c # mkinstalldirs command MKINSTALLDIRS = $(top_builddir)/mkinstalldirs # commands to erase files and directories RM = rm -f RMTREE = rm -rf # command to create a symbolic link SYMLINK = ln -s # windows environment MINGW32 = CYGWIN = UWIN = # ssl library SSLLIBS = -L/usr/local/lib -lssl -lcrypto # pcre library PCRELIBS = # socket library SOCKETLIBS = # pthreads library PTHREADLIB = -lpthread # nanosleep library NANOSLEEPLIB = # clock_nanosleep library CLOCKNANOSLEEPLIB = # shmopen library SHMOPENLIB = # crypt library CRYPTLIB = # inet_aton library INETATONLIB = -lresolv # dl library DLLIB =