home *** CD-ROM | disk | FTP | other *** search
Makefile | 2001-09-18 | 975 b | 41 lines |
- !IFNDEF NETSAMPLEPATH
- !ERROR Env Variable NETSAMPLEPATH must be defined: Parent directory of QuickStart Samples
- !ENDIF
-
- #------------------------------------------------------------------
- #The master rules for building .NET QuickStart Sample applications
- # NETSAMPLEPATH Env Variable must be defined
-
- !include $(NETSAMPLEPATH)\QuickStart\master.mak
-
-
- #------------------------------------------------------------------
- SUB_DIRS = adodtreader \
- adooverview1 \
- adooverview2 \
- adooverview3 \
- adooverview4 \
- connectionpooling \
- dbtransactionswithacommand \
- distribtransaction \
- employees \
- executingacommand \
- filterdatatable \
- gettingdata \
- handleerrors \
- outparamswithacommand \
- readandwritexml \
- relationaldata \
- sqldtreader \
- xmlfromsqlsrv \
- updatingdata \
- adorstodataset \
- typeddata
-
- all :
- rem Sample $(MAKEDIR)
- for %i in ( $(SUB_DIRS) ) do $(_MAKE_IN_DIR) %i all
-
- clean :
- for %i in ( $(SUB_DIRS) ) do $(_MAKE_IN_DIR) %i clean
-