home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / aplusplus-1.01-src.lha / GNU / src / amiga / APlusPlus-1.01 / GNUC++ / Tests / Makefile < prev    next >
Makefile  |  1994-07-07  |  2KB  |  57 lines

  1. srcdir =    .
  2.  
  3. CXX =        g++
  4. CFLAGS =    -O2
  5. LIBS =        ../APPLibrary/libaplusplus.a -lauto
  6. INCDIR =    ../../include
  7. INCLUDES =    -I. -I$(srcdir) -I$(INCDIR)
  8.  
  9. TESTS =        LvObject_test MsgPort_test SigResp_test TimedMsgPort_test \
  10.         AutoDrawArea_test Canvas_test TextView_test Gadget_test \
  11.         BoopsiGadget_test Constraints_test GT_test GWindow_test \
  12.         Listview_test SimpleWindow_test
  13.  
  14. all :        $(TESTS)
  15.  
  16. LvObject_test :    $(srcdir)/../../TESTPRGS/exec/LvObject_test.cxx
  17.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  18.  
  19. MsgPort_test :    $(srcdir)/../../TESTPRGS/exec/MsgPort_test.cxx
  20.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  21.  
  22. SigResp_test :    $(srcdir)/../../TESTPRGS/exec/SigResp_test.cxx
  23.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  24.  
  25. TimedMsgPort_test :    $(srcdir)/../../TESTPRGS/exec/TimedMsgPort_test.cxx
  26.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  27.  
  28. AutoDrawArea_test :    $(srcdir)/../../TESTPRGS/graphics/AutoDrawArea_test.cxx
  29.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  30.  
  31. Canvas_test :    $(srcdir)/../../TESTPRGS/graphics/Canvas_test.cxx
  32.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  33.  
  34. TextView_test :    $(srcdir)/../../TESTPRGS/graphics/TextView_test.cxx
  35.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  36.  
  37. BoopsiGadget_test :    $(srcdir)/../../TESTPRGS/intuition/BoopsiGadget_test.cxx
  38.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  39.  
  40. Constraints_test :    $(srcdir)/../../TESTPRGS/intuition/Constraints_test.cxx
  41.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  42.  
  43. Gadget_test :    $(srcdir)/../../TESTPRGS/intuition/Gadget_test.C
  44.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  45.  
  46. GT_test :    $(srcdir)/../../TESTPRGS/intuition/GT_test.cxx
  47.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  48.  
  49. GWindow_test :    $(srcdir)/../../TESTPRGS/intuition/GWindow_test.C
  50.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  51.  
  52. Listview_test :    $(srcdir)/../../TESTPRGS/intuition/Listview_test.cxx
  53.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  54.  
  55. SimpleWindow_test :    $(srcdir)/../../TESTPRGS/intuition/SimpleWindow_test.cxx
  56.         $(CXX) -o $@ $(INCLUDES) $(CFLAGS) $< $(LIBS)
  57.