mirror of
https://github.com/boostorg/statechart.git
synced 2026-01-26 19:12:09 +00:00
34 lines
278 B
Makefile
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|