home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-05-23 | 866 b | 30 lines |
- !include ..\..\master.mak
-
- #since we want the compiler to import from some dll's, let's specify the std WinForms ones here
- _CS_WEBFORMS_IMPORTS=/R:System.DLL /R:System.Web.dll
-
- _OUTDIR=..\..\Bin
- _WF_OUTDIR=..\..\WINFORMS\Bin
- _HT_OUTDIR=..\..\HowTo\Bin
- _AP_OUTDIR=..\..\AspPlus\Bin
-
- #since we want the compiler to import from some dll's, let's specify it here
- _IMPORTS=$(_CS_WEBFORMS_IMPORTS)
-
- #Define what we are building from what
- TARGET_NAME=Microsoft.Samples.Utils.CodeShow.dll
- SOURCE_NAMES=CodeSnippet.cs
-
- $(_OUTDIR)\$(TARGET_NAME) : $(TARGET_NAME)
- copy $** $(_OUTDIR)
- copy $** $(_AP_OUTDIR)
- copy $** $(_WF_OUTDIR)
- copy $** $(_HT_OUTDIR)
-
- $(TARGET_NAME) : $(SOURCE_NAMES)
- $(_CS) $(_CS_DLL_FLAGS) $(_IMPORTS) /out:$@ $**
-
- #issuing "nmake" will build target
- all: $(_OUTDIR)\$(TARGET_NAME)
-
-