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.
15 lines
335 B
15 lines
335 B
|
|
VERSION = 0.1
|
|
PREFIX = /usr
|
|
ETCPREFIX = /etc
|
|
WINVERSION = 1
|
|
CXX = g++
|
|
CXXFLAGS = -ggdb -fPIC -Wno-write-strings -I./ -std=c++11 -DBUILD_WINDOWS=1
|
|
LDFLAGS = -lm -lssl -lcrypto -lwsock32 -lws2_32
|
|
TARGET = $(OBJLIB_NAME).dll
|
|
|
|
DISTNAME = lib$(OBJLIB_NAME)-$(VERSION)
|
|
DEPENDFILE = .depend
|
|
|
|
LINKPARAMS = -Wl,--out-implib,libUDPTCPNetwork.a
|