home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / aplusplus-1.01-src.lha / src / amiga / aplusplus-1.01 / sasc++ / makefile < prev    next >
Makefile  |  1994-05-09  |  3KB  |  100 lines

  1. #
  2. # Makefile for the A++ Library
  3. # Copyright (C) by Armin Vogt
  4. #
  5. # $Id: makefile,v 1.3 1994/05/09 21:25:32 Armin_Vogt Exp Armin_Vogt $
  6. #
  7.  
  8. LIBRARYFILE     =       gcc:lib/libaplusplus.a
  9. LIBSOURCE       =       apphome:aplusplus/libsource/
  10. APPHEADERS      =       apphome:Aplusplus/
  11. OPTS            =            
  12.  
  13. OBJS            =      appmain.o list.o prioritylist.o objectlist.o\
  14.       signalresponder.o messagec.o timedmsgport.o timerc.o\
  15.       attrlist.o taglist.o intuiobject.o itransponder.o graphicobject.o\
  16.       screenc.o windowcv.o gwindow.o gborder.o gadgetcv.o intuimessagec.o\
  17.       stdgadget.o boopsigadget.o gt_gadget.o gt_scroller.o gt_listview.o gt_string.o\
  18.       fontc.o drawarea.o autodrawarea.o canvas.o textview.o\
  19.         rawkeydecoder.o maparray.o
  20.         
  21.  
  22.  
  23. $(LIBRARYFILE): $(OBJS)
  24.     ar rT $(LIBRARYFILE) $?
  25.  
  26. .cxx.o:
  27.     g++ $*.cxx -c $(OPTS) -Iapphome:
  28.  
  29.  
  30. APPMain.o: $(LIBSOURCE)APPMain.cxx 
  31.  
  32. AttrList.o: $(LIBSOURCE)AttrList.cxx $(APPHEADERS)utility/AttrList.h
  33.  
  34. AutoDrawArea.o: $(LIBSOURCE)AutoDrawArea.cxx $(APPHEADERS)graphics/AutoDrawArea.h
  35.  
  36. BoopsiGadget.o: $(LIBSOURCE)BoopsiGadget.cxx $(APPHEADERS)intuition/BoopsiGadget.h
  37.  
  38. Canvas.o: $(LIBSOURCE)Canvas.cxx $(APPHEADERS)graphics/Canvas.h
  39.  
  40. DrawArea.o: $(LIBSOURCE)DrawArea.cxx $(APPHEADERS)graphics/DrawArea.h
  41.  
  42. FontC.o: $(LIBSOURCE)FontC.cxx $(APPHEADERS)graphics/FontC.h
  43.  
  44. GadgetCV.o: $(LIBSOURCE)GadgetCV.cxx $(APPHEADERS)intuition/GadgetCV.h
  45.  
  46. GBorder.o: $(LIBSOURCE)GBorder.cxx $(APPHEADERS)graphics/GBorder.h
  47.  
  48. GraphicObject.o: $(LIBSOURCE)GraphicObject.cxx $(APPHEADERS)graphics/GraphicObject.h
  49.  
  50. GT_Gadget.o: $(LIBSOURCE)GT_Gadget.cxx $(APPHEADERS)intuition/GT_Gadget.h
  51.  
  52. GT_Scroller.o: $(LIBSOURCE)GT_Scroller.cxx $(APPHEADERS)intuition/GT_Gadgets/GT_Scroller.h
  53.  
  54. GT_String.o: $(LIBSOURCE)GT_String.cxx $(APPHEADERS)intuition/GT_Gadgets/GT_String.h
  55.  
  56. GWindow.o: $(LIBSOURCE)GWindow.cxx $(APPHEADERS)intuition/GWindow.h
  57.  
  58. IntuiObject.o: $(LIBSOURCE)IntuiObject.cxx $(APPHEADERS)intuition/IntuiObject.h
  59.  
  60. ITransponder.o: $(LIBSOURCE)ITransponder.cxx $(APPHEADERS)intuition/ITransponder.h
  61.  
  62. List.o: $(LIBSOURCE)List.cxx $(APPHEADERS)exec/List.h
  63.  
  64. LvObject.o: $(LIBSOURCE)LvObject.cxx  $(APPHEADERS)exec/LvObject.h
  65.  
  66. MapArray.o: $(LIBSOURCE)MapArray.cxx  $(APPHEADERS)environment/MapArray.h
  67.  
  68. MessageC.o: $(LIBSOURCE)MessageC.cxx  $(APPHEADERS)exec/MessageC.h
  69.  
  70. ObjectList.o: $(LIBSOURCE)ObjectList.cxx $(APPHEADERS)exec/ObjectList.h
  71.  
  72. PriorityList.o: $(LIBSOURCE)PriorityList.cxx $(APPHEADERS)exec/PriorityList.h
  73.  
  74. RawKeyDecoder.o: $(LIBSOURCE)RawKeyDecoder.cxx $(APPHEADERS)intuition/RawKeyDecoder.h
  75.  
  76. ScreenC.o: $(LIBSOURCE)ScreenC.cxx $(APPHEADERS)intuition/ScreenC.h
  77.  
  78. SignalResponder.o: $(LIBSOURCE)SignalResponder.cxx $(APPHEADERS)exec/SignalResponder.h
  79.  
  80. StdGadget.o: $(LIBSOURCE)StdGadget.cxx $(APPHEADERS)intuition/StdGadget.h
  81.  
  82. taglist.o: $(LIBSOURCE)taglist.cxx  
  83.  
  84. WindowCV.o: $(LIBSOURCE)WindowCV.cxx $(APPHEADERS)intuition/WindowCV.h
  85.  
  86. GT_Listview.o: $(LIBSOURCE)GT_Listview.cxx $(APPHEADERS)intuition/GT_Gadgets/GT_Listview.h
  87.  
  88. IntuiMessageC.o: $(LIBSOURCE)IntuiMessageC.cxx  $(APPHEADERS)intuition/IntuiMessageC.h
  89.  
  90. TextView.o: $(LIBSOURCE)TextView.cxx $(APPHEADERS)graphics/TextView.h
  91.  
  92. TimedMsgPort.o: $(LIBSOURCE)TimedMsgPort.cxx  $(APPHEADERS)exec/TimedMsgPort.h
  93.  
  94. TimerC.o: $(LIBSOURCE)TimerC.cxx  $(APPHEADERS)devices/TimerC.h
  95.  
  96.  
  97.  
  98.  
  99.  
  100.