source: doc/theses/thierry_delisle_PhD/code/readQ_example/thrdlib/Makefile @ 29185fc

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 29185fc was 29185fc, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Working towards allowing different thread frameworks to be picked from the command line

  • Property mode set to 100644
File size: 262 bytes
RevLine 
[29185fc]1all: fibre.so pthread.so
2
3clean:
4        rm -rf fibre.so pthread.so
5
6pthread.so: pthread.cpp Makefile
7        $(CXX) -Wall -Wextra -O3 -g -shared -o ${@} -pthread -fpic ${<}
8
9fibre.so: fibre.cpp Makefile
10        $(CXX) -Wall -Wextra -O3 -g -shared -o ${@} -pthread -fpic ${<} -lfibre
Note: See TracBrowser for help on using the repository browser.