34 lines
941 B
Makefile
34 lines
941 B
Makefile
|
#
|
||
|
# Copyright 2018, Chanhee Park <parkchanhee@gmail.com> and Daehwan Kim <infphilo@gmail.com>
|
||
|
#
|
||
|
# This file is part of HISAT 2.
|
||
|
#
|
||
|
# HISAT 2 is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# HISAT 2 is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with HISAT 2. If not, see <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
|
||
|
all: lib
|
||
|
|
||
|
lib:
|
||
|
ARCHFLAGS="-arch x86_64" python ./setup.py build
|
||
|
|
||
|
install:
|
||
|
python ./setup.py install
|
||
|
|
||
|
clean:
|
||
|
python ./setup.py clean
|
||
|
rm -rf build test
|
||
|
|
||
|
test: lib
|
||
|
python ./ht2example.py
|