You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
329 B
17 lines
329 B
|
|
PREFIX = /usr/local
|
|
ETCPREFIX = /etc
|
|
|
|
LINUXVERSION = 1
|
|
|
|
CXX = g++
|
|
CXXFLAGS = -ggdb -fPIC -pg -Wno-write-strings -I./ -std=c++11 -DBUILD_LINUX=1
|
|
LDFLAGS = -lm -pg -lssl -lcrypto
|
|
|
|
TARGET = lib$(OBJLIB_NAME).so.$(VERSION)
|
|
|
|
DISTNAME = lib$(OBJLIB_NAME)-$(VERSION)
|
|
DEPENDFILE = .depend
|
|
|
|
LINKPARAMS = -Wl,-soname,lib$(OBJLIB_NAME).so
|