home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / configure.in < prev    next >
Text File  |  2002-09-21  |  3KB  |  109 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_REVISION($Id: configure.in,v 1.27.2.1 2002/09/21 17:20:51 JS Exp $)dnl
  3.  
  4. AC_INIT(Makefile.in)
  5.  
  6. dnl we need the values the main configure determined for us, so refuse
  7. dnl to run if we don't have them
  8. if test "x$wx_cv_path_samplesubdirs" = "x"; then
  9.     AC_MSG_ERROR([Please run configure from the top level directory.])
  10. fi
  11.  
  12. SAMPLES_SUBDIRS=$wx_cv_path_samplesubdirs
  13. AC_SUBST(SAMPLES_SUBDIRS)
  14.  
  15. IF_GNU_MAKE=$wx_cv_if_gnu_make
  16. PATH_IFS=$wx_cv_path_ifs
  17. PROGRAM_EXT=$wx_cv_program_ext
  18. WX_TARGET_LIBRARY=$wx_cv_target_library
  19. WX_TARGET_LIBRARY_GL=$wx_cv_target_library_gl
  20.  
  21. AC_SUBST(IF_GNU_MAKE)
  22. AC_SUBST(PATH_IFS)
  23. AC_SUBST(PROGRAM_EXT)
  24. AC_SUBST(WX_TARGET_LIBRARY)
  25. AC_SUBST(WX_TARGET_LIBRARY_GL)
  26.  
  27. AC_OUTPUT([
  28.             Makefile
  29.             artprov/Makefile
  30.             caret/Makefile
  31.             calendar/Makefile
  32.             checklst/Makefile
  33.             config/Makefile
  34.             controls/Makefile
  35.             console/Makefile
  36.             db/Makefile
  37.             dialogs/Makefile
  38.             dialup/Makefile
  39.             docview/Makefile
  40.             docvwmdi/Makefile
  41.             dnd/Makefile
  42.             dragimag/Makefile
  43.             drawing/Makefile
  44.             dynamic/Makefile
  45.             erase/Makefile
  46.             event/Makefile
  47.             exec/Makefile
  48.             font/Makefile
  49.             grid/Makefile
  50.             help/Makefile
  51.             image/Makefile
  52.             internat/Makefile
  53.             ipc/Makefile
  54.             joytest/Makefile
  55.             keyboard/Makefile
  56.             layout/Makefile
  57.             listctrl/Makefile
  58.             mdi/Makefile
  59.             menu/Makefile
  60.             memcheck/Makefile
  61.             minifram/Makefile
  62.             minimal/Makefile
  63.             mobile/Makefile
  64.             mobile/wxedit/Makefile
  65.             mobile/styles/Makefile
  66.             multimon/Makefile
  67.             nativedlg/Makefile
  68.             newgrid/Makefile
  69.             notebook/Makefile
  70.             oleauto/Makefile
  71.             ownerdrw/Makefile
  72.             png/Makefile
  73.             printing/Makefile
  74.             proplist/Makefile
  75.             propsize/Makefile
  76.             regtest/Makefile
  77.             resource/Makefile
  78.             rotate/Makefile
  79.             sashtest/Makefile
  80.             scroll/Makefile
  81.             scrollsub/Makefile
  82.             sockets/Makefile
  83.             splitter/Makefile
  84.             statbar/Makefile
  85.             taskbar/Makefile
  86.             text/Makefile
  87.             thread/Makefile
  88.             toolbar/Makefile
  89.             treectrl/Makefile
  90.             treelay/Makefile
  91.             typetest/Makefile
  92.             validate/Makefile
  93.             widgets/Makefile
  94.             wizard/Makefile
  95.             html/Makefile
  96.             html/about/Makefile
  97.             html/help/Makefile
  98.             html/printing/Makefile
  99.             html/helpview/Makefile
  100.             html/test/Makefile
  101.             html/zip/Makefile
  102.             html/virtual/Makefile
  103.             html/widget/Makefile
  104.             opengl/Makefile
  105.             opengl/cube/Makefile
  106.             opengl/penguin/Makefile
  107.             opengl/isosurf/Makefile
  108.         ])
  109.