home *** CD-ROM | disk | FTP | other *** search
Makefile | 2001-09-18 | 1.3 KB | 29 lines |
- !IFNDEF NETSAMPLEPATH
- !ERROR Env Variable NETSAMPLEPATH must be defined: Parent directory of QuickStart Samples
- !ENDIF
-
- !include $(NETSAMPLEPATH)\QuickStart\master.mak
-
-
- #--------------------------------------------------
- TARGET = $(_OUTDIR)\Data.dll
- CLEANUP = $(_OUTDIR)\Data.dll \
- $(_OUTDIR)\Data.pdb
- SOURCES=DataGrid1.1.aspx.vb DataGrid1.aspx.vb DataGrid10.aspx.vb DataGrid11.aspx.vb DataGrid12.aspx.vb DataGrid13.aspx.vb DataGrid13_Details.aspx.vb DataGrid14.aspx.vb DataGrid15.aspx.vb DataGrid16.aspx.vb DataGrid17.aspx.vb DataGrid18.aspx.vb DataGrid2.aspx.vb DataGrid3.aspx.vb DataGrid4.aspx.vb DataGrid5.aspx.vb DataGrid6.aspx.vb DataGrid7.aspx.vb DataGrid8.aspx.vb DataGrid9.aspx.vb xmlgen.aspx.vb
- #--------------------------------------------------
- _IMPORTS=/r:System.Data.dll /r:System.dll /r:System.Web.dll /r:System.Drawing.dll /r:System.Xml.Dll
- _OUTDIR=.\bin
-
- #--------------------------------------------------
- all : $(TARGET)
- rem Sample $(MAKEDIR)
-
- $(TARGET) : $(SOURCES)
- if not exist $(_OUTDIR) md $(_OUTDIR)
- $(_BC) $(_VB_DLL_FLAGS) $(_IMPORTS) /out:$@ $** $(_WIN32RES) $(_KEYFILE)
-
- clean :
- for %i in ( $(CLEANUP) ) do if exist %i del %i
- if exist obj $(_RMDIR) obj
- if exist bin $(_RMDIR) bin
- #--------------------------------------------------