mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-26 19:12:09 +00:00
34 lines
381 B
Makefile
34 lines
381 B
Makefile
|
|
# very basic makefile for PingPong
|
|
#
|
|
# GNU compiler GCC
|
|
#
|
|
INCLUDES= -I../../../../../boost_1_31_0 -I../../../../ -I./
|
|
CXXFLAGS= -O3 -ftemplate-depth-100 -DNDEBUG -finline-functions -Wno-inline -pthread -fPIC
|
|
CXX= $(INCLUDES) $(CXXFLAGS)
|
|
LDFLAGS=
|
|
LIBS= -L. -lboost_thread-gcc-mt
|
|
|
|
PingPong : PingPong.cpp
|
|
g++ $(CXX) -o PingPong PingPong.cpp $(LDFLAGS) $(LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|