home *** CD-ROM | disk | FTP | other *** search
Makefile | 2001-09-18 | 1.3 KB | 32 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.cs DataGrid1.aspx.cs DataGrid10.aspx.cs DataGrid11.aspx.cs DataGrid12.aspx.cs DataGrid13.aspx.cs DataGrid13_Details.aspx.cs DataGrid14.aspx.cs DataGrid15.aspx.cs DataGrid16.aspx.cs DataGrid17.aspx.cs DataGrid18.aspx.cs DataGrid2.aspx.cs DataGrid3.aspx.cs DataGrid4.aspx.cs DataGrid5.aspx.cs DataGrid6.aspx.cs DataGrid7.aspx.cs DataGrid8.aspx.cs DataGrid9.aspx.cs xmlgen.aspx.cs
-
- #--------------------------------------------------
- _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)
- $(_CS) $(_CS_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
- #--------------------------------------------------
-
-