home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / Makefile < prev    next >
Makefile  |  1997-10-25  |  838b  |  28 lines

  1. # Top Level Makefile -- can be used to compile both the Simple
  2. # and the Power component (in the intermediate folder).
  3.  
  4. #===============================================================
  5. !IF "$(PROCESSOR_ARCHITECTURE)"=="x86"
  6. #===============================================================
  7.  
  8. SAMPLES= simple intermediate
  9.  
  10. #===============================================================
  11. !ELSE
  12. #===============================================================
  13.  
  14. SAMPLES= 
  15.  
  16. #===============================================================
  17. !ENDIF
  18. #===============================================================
  19.  
  20.  
  21. all:
  22.     for %%i in ($(SAMPLES) ) do \
  23.         cd %%i & $(MAKE) cpyshared & $(MAKE) -$(MAKEFLAGS) all & cd ..
  24.  
  25. clean:
  26.     for %%i in ($(SAMPLES)) do \
  27.         cd %%i & $(MAKE) -$(MAKEFLAGS) clean & cd ..
  28.