home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 September / VPR0309.ISO / DOTNETSDK / dotNETSDK / setup.exe / netfxsd1.cab / makefile_686________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Makefile  |  2001-09-27  |  288 b   |  26 lines

  1. #
  2. # Makefile
  3. #
  4.  
  5. _DXDIR=.
  6.  
  7. all: DirectDraw DirectMusic
  8.  
  9. DirectDraw::
  10.     -@cd $*
  11.     -@nmake -nologo all
  12.     -@cd ..
  13.  
  14. DirectMusic::
  15.     -@cd $*
  16.     -@nmake -nologo all
  17.     -@cd ..
  18.  
  19. clean:
  20.     -@cd DirectDraw
  21.     -@nmake -nologo clean
  22.     -@cd ..\DirectMusic
  23.     -@nmake -nologo clean
  24.     -@cd ..
  25.  
  26.