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

Commit

Permalink
2008-01-07 Ivan N. Zlatev <contact@i-nz.net>
Browse files Browse the repository at this point in the history
        * Makefile: ops.


svn path=/trunk/mwf-designer/; revision=92372
  • Loading branch information
ivanz committed Jan 6, 2008
1 parent bcbb6b9 commit 3676be3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ BUILD_DIR=build
MD_BUILD_DIR=../build MD_BUILD_DIR=../build
DEPS_DIR = deps DEPS_DIR = deps
DEPS = ${DEPS_DIR}/* DEPS = ${DEPS_DIR}/*
DIST_DIR = ${BUILD_DIR}/mwf-designer-dist DIST_DIR = ${BUILD_DIR}/mwf-designer
MD_DIST_DIR = ${MD_BUILD_DIR}/mwf-designer MD_DIST_DIR = ${MD_BUILD_DIR}/mwf-designer
ASSEMBLY=mwf-designer.exe ASSEMBLY=mwf-designer.exe
REFERENCES=System.Design,System.Windows.Forms,System.Drawing,System.Data,${DEPS_DIR}/ICSharpCode.NRefactory.dll REFERENCES=System.Design,System.Windows.Forms,System.Drawing,System.Data,${BUILD_DIR}/ICSharpCode.NRefactory.dll
MD_REFERENCES=System.Design,System.Windows.Forms,System.Drawing,System.Data,${MD_BUILD_DIR}/ICSharpCode.NRefactory.dll MD_REFERENCES=System.Design,System.Windows.Forms,System.Drawing,System.Data,${MD_BUILD_DIR}/ICSharpCode.NRefactory.dll


all: all:
mkdir -p ${MD_BUILD_DIR} mkdir -p ${BUILD_DIR}
cp ${DEPS_DIR}/ICSharpCode.NRefactory.dll ${MD_BUILD_DIR} cp ${DEPS_DIR}/ICSharpCode.NRefactory.dll ${BUILD_DIR}
export MCS_COLORS=disable;gmcs -debug -r:${REFERENCES} -out:${MD_BUILD_DIR}/${ASSEMBLY} ${SOURCES} gmcs -debug -r:${REFERENCES} -out:${BUILD_DIR}/${ASSEMBLY} ${SOURCES}


run: run:
cd ${MD_BUILD_DIR};mono --debug mwf-designer.exe cd ${BUILD_DIR};mono --debug mwf-designer.exe


msnet: msnet:
csc -debug -d:NET_2_0 -t:library -r:System.Design.dll,System.Windows.Forms.dll,System.Drawing.dll,System.Data.dll,..\build\Mono.Design.dll,..\build\ICSharpCode.NRefactory.dll -out:build\mwf-designer.exe src\\*.cs src\\*\\*.cs csc -debug -d:NET_2_0 -t:library -r:System.Design.dll,System.Windows.Forms.dll,System.Drawing.dll,System.Data.dll,..\build\Mono.Design.dll,..\build\ICSharpCode.NRefactory.dll -out:build\mwf-designer.exe src\*.cs src\*\*.cs


dist: dist:
mkdir -p ${DIST_DIR} mkdir -p ${DIST_DIR}
Expand All @@ -30,7 +30,7 @@ dist:
mono-design: mono-design:
mkdir -p ${MD_BUILD_DIR} mkdir -p ${MD_BUILD_DIR}
cp ${DEPS} ${MD_BUILD_DIR} cp ${DEPS} ${MD_BUILD_DIR}
export MCS_COLORS=disable;gmcs -d:WITH_MONO_DESIGN -debug -r:${MD_REFERENCES} -r:${MD_BUILD_DIR}/Mono.Design.dll -out:${MD_BUILD_DIR}/${ASSEMBLY} ${SOURCES} gmcs -d:WITH_MONO_DESIGN -debug -r:${MD_REFERENCES} -r:${MD_BUILD_DIR}/Mono.Design.dll -out:${MD_BUILD_DIR}/${ASSEMBLY} ${SOURCES}


mono-design-run: mono-design-run:
cd ${MD_BUILD_DIR};mono --debug mwf-designer.exe cd ${MD_BUILD_DIR};mono --debug mwf-designer.exe
Expand Down

0 comments on commit 3676be3

Please sign in to comment.