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

34 lines
371 B
Makefile

# very basic makefile for Handcrafted
#
# 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=
Handcrafted : Handcrafted.cpp
g++ $(CXX) -o Handcrafted Handcrafted.cpp $(LDFLAGS) $(LIBS)