forked from openkim/kimpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
22 lines (22 loc) · 848 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
build:
python setup.py build
develop:
python setup.py develop
inplace:
python setup.py build_ext --inplace
install:
python setup.py install
clean:
python setup.py clean
clean_all:
rm -rf build/ dist/ kimpy.egg-info/ */*.so */*.pyc */__pycache__ \
kimpy/*Unit_bind.cpp \
kimpy/KIM_DataType_bind.cpp kimpy/KIM_Numbering_bind.cpp \
kimpy/KIM_SpeciesName_bind.cpp kimpy/KIM_LanguageName_bind.cpp \
kimpy/KIM_ComputeCallbackName_bind.cpp kimpy/KIM_LogVerbosity_bind.cpp \
kimpy/KIM_Collection_bind.cpp kimpy/KIM_CollectionItemType_bind.cpp \
tests/*_unit.py \
tests/test_data_type.py tests/test_numbering.py tests/test_species_name.py \
tests/test_language_name.py tests/test_compute_callback_name.py \
tests/test_log_verbosity.py tests/test_support_status.py \
tests/test_collection.py tests/test_collection_item_type.py \