2013-08-02 14:50:29 +00:00
|
|
|
CXXFLAGS = -I../.. -I../../boost
|
|
|
|
|
|
|
|
all: delegate_example coroutine_example
|
|
|
|
|
|
|
|
delegate_example: delegate_example.cpp
|
2019-01-07 00:17:44 +00:00
|
|
|
g++ -o $@ $^ $(CXXFLAGS)
|
|
|
|
|
|
|
|
coroutine_example: coroutine_example.cpp
|
|
|
|
g++ -o $@ $^ $(CXXFLAGS) -lboost_context
|