home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / uidemo / makefile.gcc < prev   
Makefile  |  1995-04-09  |  2KB  |  120 lines

  1.  
  2.  
  3.  
  4. PROGRAMS = animate bigstrvw   calc calendar clock color  cursor  dialog2 \
  5.   dyndlg environ font graphic1 graphic2 hello1 hello2 hello3 menu0 menu_dbl \
  6.   popmenu scroll stddlg textedit track wait window
  7.  
  8. demos: $(PROGRAMS)
  9.  
  10.  
  11. .PHONY: $(PROGRAMS)
  12.  
  13.  
  14. animate:
  15.     cd animate && make -fmakefile.gcc && cd ..
  16.     
  17.  
  18. bigstrvw:
  19.     cd bigstrvw && make -fmakefile.gcc && cd ..
  20.     
  21.  
  22. calc:
  23.     cd calc && make -fmakefile.gcc && cd ..
  24.     
  25.  
  26. calendar:
  27.     cd calendar && make -fmakefile.gcc && cd ..
  28.     
  29.  
  30. clock:
  31.     cd clock && make -fmakefile.gcc && cd ..
  32.     
  33.  
  34. color:
  35.     cd color && make -fmakefile.gcc && cd ..
  36.     
  37.  
  38. cursor:
  39.     cd cursor && make -fmakefile.gcc && cd ..
  40.     
  41.  
  42. dialog1:
  43.     cd dialog1 && make -fmakefile.gcc && cd ..
  44.     
  45.  
  46. dialog2:
  47.     cd dialog2 && make -fmakefile.gcc && cd ..
  48.     
  49.  
  50. dyndlg:
  51.     cd dyndlg && make -fmakefile.gcc && cd ..
  52.     
  53.  
  54. environ:
  55.     cd environ && make -fmakefile.gcc && cd ..
  56.     
  57.  
  58. font:
  59.     cd font && make -fmakefile.gcc && cd ..
  60.     
  61.  
  62. graphic1:
  63.     cd graphic1 && make -fmakefile.gcc && cd ..
  64.     
  65.  
  66. graphic2:
  67.     cd graphic2 && make -fmakefile.gcc && cd ..
  68.     
  69.  
  70. hello1:
  71.     cd hello1 && make -fmakefile.gcc && cd ..
  72.     
  73.  
  74. hello2:
  75.     cd hello2 && make -fmakefile.gcc && cd ..
  76.     
  77.  
  78. hello3:
  79.     cd hello3 && make -fmakefile.gcc && cd ..
  80.     
  81.  
  82. menu0:
  83.     cd menu0 && make -fmakefile.gcc && cd ..
  84.     
  85.  
  86. menu_dbl:
  87.     cd menu_dbl && make -fmakefile.gcc && cd ..
  88.     
  89.  
  90. popmenu:
  91.     cd popmenu && make -fmakefile.gcc && cd ..
  92.     
  93.  
  94. scroll:
  95.     cd scroll && make -fmakefile.gcc && cd ..
  96.     
  97.  
  98. stddlg:
  99.     cd stddlg && make -fmakefile.gcc && cd ..
  100.     
  101.  
  102. textedit:
  103.     cd textedit && make -fmakefile.gcc && cd ..
  104.     
  105.  
  106. track:
  107.     cd track && make -fmakefile.gcc && cd ..
  108.     
  109.  
  110. wait:
  111.     cd wait && make -fmakefile.gcc && cd ..
  112.     
  113.  
  114. window:
  115.     cd window && make -fmakefile.gcc && cd ..
  116.     
  117.     
  118. clean:
  119.     -(find . -type f \( -name '*.o' -o  -perm +u+x \) -exec rm {} \; )
  120.