forked from liferay/yui3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add root build.xml that builds the entire project.
Run `ant` inside the src directory to build YUI. Change some build.xml to subant ./build.*.xml if possible-- otherwise run <ant> explicitly-- inside macrodefs. Add the clean target to build.xml, if missing. Change swf's builddir property to use a relative path to builder.
- Loading branch information
Showing
7 changed files
with
92 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project name="yui3" default="all"> | ||
<description>YUI 3</description> | ||
<macrodef name="build-all"> | ||
<attribute name="target"/> | ||
<sequential> | ||
<subant target="@{target}"> | ||
<fileset dir="." includes="*/build.xml"/> | ||
</subant> | ||
</sequential> | ||
</macrodef> | ||
<target name="all"> | ||
<build-all target="all"/> | ||
</target> | ||
<target name="clean"> | ||
<build-all target="clean"/> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project name="YUI" default="local"> | ||
<description>DOM - Build All Modules</description> | ||
<description>TabView - Build All Modules</description> | ||
<macrodef name="build-tabview"> | ||
<attribute name="target"/> | ||
<sequential> | ||
<subant target="@{target}"> | ||
<fileset dir="." includes="build.*.xml"/> | ||
</subant> | ||
</sequential> | ||
</macrodef> | ||
|
||
<target name="local"> | ||
<ant antfile="build.tabview-base.xml" target="local" /> | ||
<ant antfile="build.tabview-plugin.xml" target="local" /> | ||
<ant antfile="build.tabview.xml" target="local" /> | ||
<build-tabview target="local"/> | ||
</target> | ||
|
||
<target name="deploy"> | ||
<ant antfile="build.tabview-base.xml" target="deploy" /> | ||
<ant antfile="build.tabview-plugin.xml" target="deploy" /> | ||
<ant antfile="build.tabview.xml" target="deploy" /> | ||
<build-tabview target="deploy"/> | ||
</target> | ||
|
||
<target name="all"> | ||
<ant antfile="build.tabview-base.xml" target="all" /> | ||
<ant antfile="build.tabview-plugin.xml" target="all" /> | ||
<ant antfile="build.tabview.xml" target="all" /> | ||
<build-tabview target="all"/> | ||
</target> | ||
<target name="clean"> | ||
<build-tabview target="clean"/> | ||
</target> | ||
|
||
</project> |