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

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