mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-24 06:22:11 +00:00
34 lines
365 B
Makefile
34 lines
365 B
Makefile
|
|
# very basic makefile for BitMachine
|
|
#
|
|
# 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=
|
|
|
|
BitMachine : BitMachine.cpp
|
|
g++ $(CXX) -o BitMachine BitMachine.cpp $(LDFLAGS) $(LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|