Skip to content
This repository has been archived by the owner on Dec 14, 2020. It is now read-only.

Commit

Permalink
In .:
Browse files Browse the repository at this point in the history
2009-07-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>

	* Makefile: Make publish and install targets synonyms.

In MonkeyWrench.Web.UI:
2009-07-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>

	* Makefile: Make publish and install targets synonyms.

In MonkeyWrench.Web.WebService:
2009-07-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>

	* Makefile: Make publish and install targets synonyms.

svn path=/trunk/monkeywrench/; revision=138528
  • Loading branch information
rolfbjarne committed Jul 23, 2009
1 parent d0e1b71 commit 1540861
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 18 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2009-07-23 Rolf Bjarne Kvinge <RKvinge@novell.com>

* Makefile: Make publish and install targets synonyms.

2009-06-04 Rolf Bjarne Kvinge <RKvinge@novell.com>

* MonkeyWrench.sln: Added new project.
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Expand Up @@ -29,7 +29,7 @@ svn:
svn pd svn:executable $(SVN_NO_EXEC_FILES)
svn ps svn:executable $(SVN_EXEC_FILES)

all clean publish install:
all clean install:
$(MAKE) -C MonkeyWrench $@
$(MAKE) -C MonkeyWrench.DataClasses $@
$(MAKE) -C MonkeyWrench.Database $@
Expand All @@ -39,6 +39,8 @@ all clean publish install:
$(MAKE) -C MonkeyWrench.Web.UI $@
$(MAKE) -C MonkeyWrench.Web.WebService $@

publish: install

wsdl:
$(MAKE) -C MonkeyWrench.Web.WebService $@

Expand Down
4 changes: 4 additions & 0 deletions MonkeyWrench.Web.UI/ChangeLog
@@ -1,3 +1,7 @@
2009-07-23 Rolf Bjarne Kvinge <RKvinge@novell.com>

* Makefile: Make publish and install targets synonyms.

2009-07-23 Rolf Bjarne Kvinge <RKvinge@novell.com>

* Master.master.cs: Make the login instance, not static.
Expand Down
14 changes: 5 additions & 9 deletions MonkeyWrench.Web.UI/Makefile
Expand Up @@ -28,13 +28,9 @@ clean:
rm -f $(OUT)*
rm -f bin/*.mdb bin/*.dll bin/*.pdb

publish: all
mkdir -p bin
# TODO: rsync to not trigger reloads if nothing has changed
cp $(OUT_DIR)/Npgsql.dll* bin/
cp $(OUT_DIR)/MonkeyWrench.dll* bin/
cp $(OUT_DIR)/MonkeyWrench.DataClasses.dll* bin/
cp $(OUT_DIR)/MonkeyWrench.Web.UI.dll* bin/

install: all
@:
mkdir -p bin
cp -pu $(OUT_DIR)/Npgsql.dll* bin/
cp -pu $(OUT_DIR)/MonkeyWrench.dll* bin/
cp -pu $(OUT_DIR)/MonkeyWrench.DataClasses.dll* bin/
cp -pu $(OUT_DIR)/MonkeyWrench.Web.UI.dll* bin/
4 changes: 4 additions & 0 deletions MonkeyWrench.Web.WebService/ChangeLog
@@ -1,3 +1,7 @@
2009-07-23 Rolf Bjarne Kvinge <RKvinge@novell.com>

* Makefile: Make publish and install targets synonyms.

2009-07-23 Rolf Bjarne Kvinge <RKvinge@novell.com>

* WebServices.asmx:
Expand Down
15 changes: 7 additions & 8 deletions MonkeyWrench.Web.WebService/Makefile
Expand Up @@ -32,20 +32,19 @@ clean:
rm -f $(OUT)*
rm -f bin/*.dll bin/*.mdb bin/*.pdb

publish: all
mkdir -p bin
cp $(OUT)* bin
cp -p $(OUT_DIR)/Npgsql.dll* bin
cp -p $(OUT_DIR)/MonkeyWrench.dll* bin
cp -p $(OUT_DIR)/MonkeyWrench.DataClasses.dll* bin
cp -p $(OUT_DIR)/MonkeyWrench.Database.dll* bin
install: all
cp -pu $(OUT)* bin
cp -pu $(OUT_DIR)/Npgsql.dll* bin
cp -pu $(OUT_DIR)/MonkeyWrench.dll* bin
cp -pu $(OUT_DIR)/MonkeyWrench.DataClasses.dll* bin
cp -pu $(OUT_DIR)/MonkeyWrench.Database.dll* bin

dataclasses:
$(MAKE) -C $(TOPDIR)/MonkeyWrench.DataClasses
$(MAKE) dependencies

wsdl: WebServices.wsdl

WebServices.wsdl: WebServices.asmx Download.aspx Download.aspx.cs
WebServices.wsdl: all
curl http://localhost:8123/WebServices/WebServices.asmx?wsdl > WebServices.wsdl -m 5

0 comments on commit 1540861

Please sign in to comment.