diff options
Diffstat (limited to 'include/tool/examples/Makefile')
-rw-r--r-- | include/tool/examples/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/tool/examples/Makefile b/include/tool/examples/Makefile new file mode 100644 index 0000000..a605263 --- /dev/null +++ b/include/tool/examples/Makefile @@ -0,0 +1,9 @@ +CXXFLAGS = -I../.. -I../../boost + +all: delegate_example coroutine_example + +delegate_example: delegate_example.cpp + g++ -o $@ $^ $(CXXFLAGS) + +coroutine_example: coroutine_example.cpp + g++ -o $@ $^ $(CXXFLAGS) -lboost_context
\ No newline at end of file |