home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tkisrc04.zip / Makefile next >
Makefile  |  1998-09-09  |  901b  |  66 lines

  1.  
  2. # set this to the name of your makedepend program
  3. MDEP=mdep
  4.  
  5. # you can use "DYNAMIC=1" on the make command line to compile a version
  6. # of the libraries that is statically linked.  This feature is handled by
  7. # each of the sub-makefiles.
  8.  
  9. ALL:
  10.     cd tcl\os2
  11.     $(MAKE)
  12.     cd ..\..
  13.     cd tk\os2
  14.     $(MAKE)
  15.     cd ..\..
  16.     cd tkinter
  17.     $(MAKE)
  18.     cd ..
  19.     cd pycmd
  20.     $(MAKE)
  21.     cd ..
  22.  
  23. clean:
  24.     cd tcl\os2
  25.     $(MAKE) clean
  26.     cd ..\..
  27.     cd tk\os2
  28.     $(MAKE) clean
  29.     cd ..\..
  30.     cd tkinter
  31.     $(MAKE) clean
  32.     cd ..
  33.     cd pycmd
  34.     $(MAKE) clean
  35.     cd ..
  36.  
  37. clean_targets:
  38.     cd tcl\os2
  39.     $(MAKE) clean_targets
  40.     cd ..\..
  41.     cd tk\os2
  42.     $(MAKE) clean_targets
  43.     cd ..\..
  44.     cd tkinter
  45.     $(MAKE) clean_targets
  46.     cd ..
  47.     cd pycmd
  48.     $(MAKE) clean_targets
  49.     cd ..
  50.  
  51. deps:
  52.     cd tcl\os2
  53.     $(MAKE) deps
  54.     cd ..\..
  55.     cd tk\os2
  56.     $(MAKE) deps
  57.     cd ..\..
  58.     cd tkinter
  59.     $(MAKE) deps
  60.     cd ..
  61.     cd pycmd
  62.     $(MAKE) deps
  63.     cd ..
  64.  
  65.  
  66.