mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-26 07:02:11 +00:00
34 lines
350 B
Makefile
34 lines
350 B
Makefile
|
|
# very basic makefile for StopWatch
|
|
#
|
|
# GNU compiler GCC
|
|
#
|
|
INCLUDES= -I$(BOOST_ROOT) -I../../../../ -I./
|
|
CXXFLAGS= -O3 -ftemplate-depth-100 -DNDEBUG -finline-functions -Wno-inline -pthread -fPIC
|
|
CXX= $(INCLUDES) $(CXXFLAGS)
|
|
LDFLAGS=
|
|
LIBS= -lc
|
|
|
|
StopWatch : StopWatch.cpp
|
|
g++ $(CXX) -o StopWatch StopWatch.cpp $(LDFLAGS) $(LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|