Changeset 11797
- Timestamp:
- 03/25/12 20:04:54 (13 years ago)
- Location:
- issm/trunk-jpl/src/py/modules/hello
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/py/modules/hello/Makefile
r11787 r11797 1 all: ice 2 3 ice: 4 g++ -bundle -bind \ 5 -I$(ISSM_TIER)/externalpackages/boost/install/include \ 6 -I/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m\ 7 -L$(ISSM_TIER)/externalpackages/boost/install/lib -lboost_python \ 8 -L/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/config-3.2m/ -lpython3.2 \ 9 hellomodule.cpp -o hello.so 1 all: hello_ext.so 10 2 11 3 4 hello.o: hello.cpp 5 g++ -ftemplate-depth-128 -O0 -fno-inline -Wall -g -dynamic -no-cpp-precomp -gdwarf-2 -fexceptions -fPIC -I$(ISSM_TIER)/externalpackages/boost/install/include -I$(ISSM_TIER)/externalpackages/python/install/Python.framework/Versions/3.2/include/python3.2 -c -o hello.o hello.cpp 6 7 hello_ext.so: hello.o 8 g++ -headerpad_max_install_names -g -dynamiclib -Wl,-single_module -install_name hello_ext.so -o hello_ext.so hello.o -L$(ISSM_TIER)/externalpackages/boost/install/lib -lboost_python -L$(ISSM_TIER)/externalpackages/python/install/Python.framework/Versions/3.2/lib -L$(ISSM_TIER)/externalpackages/python/install/Python.framework/Versions/3.2/lib/python3.2/config -lpython3.2 12 9 13 10 clean: 14 rm hello .so11 rm hello_ext.so hello.o
Note:
See TracChangeset
for help on using the changeset viewer.