d334e039cb
NAnt is a free .NET build tool. In theory it is kind of like make without make's wrinkles. In practice it's a lot like Ant. NAnt is different. Instead of a model where it is extended with shell-based commands, NAnt is extended using task classes. Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks get executed. Each task is run by an object that implements a particular Task interface.
13 lines
419 B
Text
13 lines
419 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2009/01/07 03:01:10 jmcneill Exp $
|
|
|
|
--- Makefile.orig 2009-01-06 21:51:58.000000000 -0500
|
|
+++ Makefile
|
|
@@ -40,7 +40,7 @@ clean:
|
|
rm -fR build bootstrap
|
|
|
|
install: bootstrap
|
|
- $(NANT) -f:NAnt.build install -D:install.prefix="$(prefix)"
|
|
+ $(NANT) -f:NAnt.build install -D:install.prefix="$(prefix)" -D:install.vprefix="$(vprefix)"
|
|
|
|
run-test: bootstrap
|
|
$(NANT) -f:NAnt.build test
|