evanphx / rubinius

Rubinius, the Ruby VM

This URL has Read+Write access

rubinius / Makefile
100644 17 lines (10 sloc) 0.226 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# NOTE! When updating this file, also update INSTALL, if necessary.
 
-include shotgun/config.mk
 
all: vm
 
vm:
cd shotgun; $(MAKE) rubinius
 
install:
rake install
 
clean:
cd shotgun; $(MAKE) clean
 
.PHONY: all install clean