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.
18 lines
286 B
18 lines
286 B
|
9 years ago
|
CC=gcc
|
||
|
|
CXX=g++
|
||
|
|
|
||
|
|
DEFS=-DHAS_DEV_URANDOM
|
||
|
|
|
||
|
|
CFLAGS=-std=c99 -O6 -fPIC -Wall $(DEFS)
|
||
|
|
CXXFLAGS=-Drestrict=__restrict__ -O6 -Wall $(DEFS) -I..
|
||
|
|
|
||
|
|
#CFLAGS=-g -Wall $(DEFS)
|
||
|
|
#CXXFLAGS=-g -Wall $(DEFS)
|
||
|
|
|
||
|
|
LDFLAGS=
|
||
|
|
DLLFLAGS=-shared
|
||
|
|
DLLEXT=so
|
||
|
|
|
||
|
|
LIBANODE_LIBS=-lcrypto -lresolv -pthread
|
||
|
|
LIBSPARK_LIBS=-lz
|