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

34 lines
278 B
Makefile

# very basic makefile for Keyboard
#
# GNU compiler GCC
#
INCLUDES= -I../../../../../boost_1_31_0 -I../../../../ -I./
CXXFLAGS=
CXX= $(INCLUDES) $(CXXFLAGS)
LDFLAGS=
LIBS=
Keyboard : Keyboard.cpp
g++ $(CXX) -O3 -o Keyboard Keyboard.cpp $(LDFLAGS) $(LIBS)