Skip to content

Commit 0358561

Browse files
committed
Add a Makefile for Unix systems
(cherry picked from commit a4f209b)
1 parent e69112a commit 0358561

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: all clean ironpython
2+
3+
all: ironpython
4+
5+
ironpython:
6+
xbuild Solutions/IronPython.Mono.sln
7+
8+
testrunner:
9+
xbuild Test/TestRunner/TestRunner.sln
10+
11+
test-ipy: ironpython testrunner
12+
mono Test/TestRunner/TestRunner/bin/Debug/TestRunner.exe Test/IronPython.tests /all
13+
14+
clean:
15+
xbuild Solutions/IronPython.Mono.sln /t:Clean
16+

0 commit comments

Comments
 (0)