-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathMakefile
35 lines (30 loc) · 1.04 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#
# cellminer - Bitcoin miner for the Cell Broadband Engine Architecture
# Copyright © 2011 Robert Leslie
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (version 2) as
# published by the Free Software Foundation.
#
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
RUBY = ruby1.9.1
ext/cellminer.so: ext/Makefile ext/*.[ch] \
ext/spu/Makefile ext/spu/*.[chs] \
ext/ppu/Makefile ext/ppu/*.[chs]
$(MAKE) -C ext
ext/Makefile: ext/extconf.rb ext/depend
$(RUBY) -C ext -E ascii-8bit extconf.rb
.PHONY: clean
clean:
$(MAKE) -C ext $@
.PHONY: again
again: clean
$(MAKE)