Files
statechart/example/BitMachine/Makefile
Andreas Huber 5e59a080a1 GCC makefile
[SVN r22532]
2004-03-20 23:08:48 +00:00

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)