mirror of https://github.com/apache/activemq.git
18 lines
392 B
INI
18 lines
392 B
INI
|
#
|
||
|
# Compiler specific configuration
|
||
|
#
|
||
|
|
||
|
LIBFILE = $(OUTDIR)/libactivemq-cpp.a
|
||
|
|
||
|
#
|
||
|
# GCC/G++ release for Linux
|
||
|
#
|
||
|
CC = g++ -fexceptions -frtti -O3 -DNDEBUG -D_REENTRANT -D__WIN32 -DWIN32_LEAN_AND_MEAN
|
||
|
LD = g++ -frtti
|
||
|
CCFLAGS = -Wall
|
||
|
LDFLAGS = -L$(OUTDIR) -lactivemq -lcppunit -lws2_32 -lrpcrt4
|
||
|
OUTDIR = out
|
||
|
ARFLAGS =
|
||
|
|
||
|
|