Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/configure.ac @ 5267

Last change on this file since 5267 was 5265, checked in by bensch, 19 years ago

orxonox/trunk: configure now also checks for glew, and includes it

File size: 19.8 KB
Line 
1##########################################################################
2#   orxonox - the future of 3D-vertical-scrollers                        #
3#                                                                        #
4#   Copyright (C) 2004 orx                                               #
5#                                                                        #
6#   This program is free software; you can redistribute it and/or modify #
7#   it under the terms of the GNU General Public License as published by #
8#   the Free Software Foundation; either version 2, or (at your option)  #
9#   any later version.                                                   #
10#                                                                        #
11#   ### File Specific:                                                   #
12#   main-programmer: Benjamin Grauer                                     #
13#   co-programmer: ...                                                   #
14#                                                                        #
15#   This is the main configuration File of autoconf.                     #
16#   Please edit this file only, if you exactly know what you are doing.  #
17#   It is quite fragile, and compiling orxonox on different Platforms    #
18#   is only guarantied, if build with the right config.                  #
19#                                                                        #
20#   be sure to visit us at http://www.orxonox.net                        #
21##########################################################################
22
23#########################
24## AUTOCONF INIT PHASE ##
25#########################
26AC_PREREQ(2.56)
27AC_INIT(orxonox, 0.3.1_alpha, [orxonox-dev at mail.datacore.ch])
28
29## Detect the canonical host and target build environment.
30AC_CANONICAL_BUILD
31AC_CANONICAL_HOST
32AC_CANONICAL_TARGET
33
34AM_INIT_AUTOMAKE
35
36AC_CONFIG_SRCDIR([.])
37AC_CONFIG_HEADER([config.h])
38
39#########################
40## Checks for programs ##
41#########################
42AC_PROG_CXX
43AC_PROG_RANLIB
44AC_HEADER_STDC
45
46## THIS IS OUR DEFAULT-DATA-DIRECTORY
47
48##################################
49## CHECKING  OPTIONAL ARGUMENTS ##
50##################################
51#----------------#
52# Data-Directory #
53#----------------#
54DATA_DIR=$datadir
55echo \$\{prefix\}
56if test $DATA_DIR = \$\{prefix\}/share ; then
57        echo "not given"
58        DATA_DIR=/usr/share
59else
60        echo "given: $DATA_DIR"
61fi
62AC_DEFINE_UNQUOTED([DATADIR], ["$DATA_DIR"],
63                   [Define to the read-only architecture-independent
64                    data directory.])
65
66#-----------------#
67# shared-lib-path #
68#-----------------#
69SHARED_LIB_PATH=no
70AC_MSG_CHECKING([shared lib path])
71AC_ARG_WITH([shared-lib-path],
72        AC_HELP_STRING( [--with-shared-lib-path], [Tells the executable, where to look for the shared libraries.]),
73         SHARED_LIB_PATH=$withval)
74if test x$SHARED_LIB_PATH != xno; then
75        echo "set to $SHARED_LIB_PATH"
76else
77        echo "no"
78fi
79
80
81#-----------------#
82# DEBUG-statement #
83#-----------------#
84DEBUG=no
85AC_MSG_CHECKING([if DEBUG-mode should be enabled])
86AC_ARG_ENABLE([debug],
87        AC_HELP_STRING( [--enable-debug], [compiles in debug mode. Lots of debug info about the game.]),
88         DEBUG=$enableval)
89
90if test x$DEBUG = xno; then
91        echo "no"
92        echo " -> Setting debuglevel to 4. (orxonox is still in Development. It really is needed."
93        DEBUG=4
94elif test x$DEBUG = xyes; then
95        echo "yes"
96        echo " -> Setting debuglevel to 4. HARD DEBUG MODE!!."
97        DEBUG=4
98else
99        echo "yes: setting debuglevel to to $DEBUG"
100fi
101AC_DEFINE_UNQUOTED(DEBUG, $DEBUG, [in which debug mode we are])
102AC_SUBST(DEBUG)
103
104#---------------#
105# Modular Debug #
106#---------------#
107MODULAR_DEBUG=yes
108AC_MSG_CHECKING([if Modular-DEBUG-mode should be ebabled])
109AC_ARG_ENABLE([modular-debug],
110        AC_HELP_STRING( [--disable-modular-debug], [compiles in modular-debug mode, that logs differently on the many modules of orxonox.]),
111         MODULAR_DEBUG=$enableval)
112
113if test x$MODULAR_DEBUG = xno; then
114        echo "no"
115elif test x$MODULAR_DEBUG = xyes; then
116        echo "yes"
117        AC_DEFINE_UNQUOTED(MODULAR_DEBUG, 1, [if Modular-DUBUG mode is enabled])
118fi
119
120#--------------#
121# GTK-disabled #
122#--------------#
123AC_MSG_CHECKING([if gtk should be enabled])
124AC_ARG_ENABLE([gtk],
125        AC_HELP_STRING( [--disable-gtk],
126        [Prevents GTK from being loaded]), [def_gtk=no], [def_gtk=yes])
127if test x$def_gtk = xyes; then
128  echo "yes"
129fi
130if test x$def_gtk = xno; then
131  echo "no"
132fi
133
134#------------------#
135# libCurl-disabled #
136#------------------#
137AC_MSG_CHECKING([if libcURL should be enabled])
138AC_ARG_ENABLE([curl],
139        AC_HELP_STRING( [--disable-curl],
140        [Prevents libcURL from being loaded]), [def_curl=no], [def_curl=yes])
141if test x$def_curl = xyes; then
142  echo "yes"
143fi
144if test x$def_curl = xno; then
145  echo "no"
146fi
147
148#-------------------#
149# SubProject-enable #
150#-------------------#
151def_sub_projects=no
152AC_MSG_CHECKING([if the SubProjects should be built])
153AC_ARG_WITH([sub-projects],
154        AC_HELP_STRING( [--with-sub-projects],
155        [also builds the subProjects while make from srcdir]), [def_sub_projects=yes])
156if test x$def_sub_projects = xyes; then
157  echo "yes"
158fi
159if test x$def_sub_projects = xno; then
160  echo "no"
161fi
162AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes)
163
164#-------------------#
165# Profiling Enabled #
166#-------------------#
167def_profiling=no
168AC_MSG_CHECKING([if Profiling should be enabled])
169AC_ARG_ENABLE([profile],
170        AC_HELP_STRING( [--enable-profile],
171        [builds orxonox with profiling support]), [def_profiling=yes])
172if test x$def_profiling = xyes; then
173  echo "yes"
174  CXXFLAGS="$CXXFLAGS -pg"
175fi
176if test x$def_profiling = xno; then
177  echo "no"
178fi
179
180#----------------#
181# efence Enabled #
182#----------------#
183def_efence=no
184AC_MSG_CHECKING([if efence should be enabled])
185AC_ARG_ENABLE([efence],
186        AC_HELP_STRING( [--enable-efence],
187        [builds orxonox with efence support]), [def_efence=yes])
188if test x$def_efence = xyes; then
189  echo "yes"
190fi
191if test x$def_efence = xno; then
192  echo "no"
193fi
194
195#----------------------#
196# Documentation-enable #
197#----------------------#
198def_documentation=no
199AC_MSG_CHECKING([if the Documentation should be build by default])
200AC_ARG_ENABLE([documentation],
201        AC_HELP_STRING( [--enable-documentation],
202        [also builds the sDocumentation while make from srcdir]), [def_documentation=yes])
203if test x$def_documentation = xyes; then
204  echo "yes"
205fi
206if test x$def_documentation = xno; then
207  echo "no"
208fi
209AM_CONDITIONAL(DOCUMENTATION, test x$def_documentation = xyes)
210
211#######################
212## PROGRAMM CHECKING ##
213## 3. party Programs ##
214#######################
215
216#----------------------#
217# checking for Doxygen #
218#----------------------#
219AC_PATH_PROG(DOXYGEN, doxygen)
220AM_CONDITIONAL(DOXYGEN, test $DOXYGEN)
221
222#--------------------#
223# checking for gprof #
224#--------------------#
225AC_PATH_PROG(GPROF, gprof)
226
227#-------------------------#
228# checking for pkg-config #
229#-------------------------#
230if test x$def_gtk = xyes; then
231 AC_PATH_PROG(PKG_CONFIG, pkg-config)
232fi
233
234
235#########################
236## CHECKING FOR SYSTEM ##
237#########################
238## here the system is checked, and openGL is included
239## also checking for SDL on differen Systems
240
241AC_MSG_CHECKING([for System])
242## checking for openGL-environment and other sys-specific parameters
243case "$target" in
244
245###########
246#---------#
247# WINDOWS #
248#---------#
249###########
250  *-*-mingw32*)
251echo "mingw-WINDOWS detected"
252
253CPPFLAGS="-I/usr/include -I/mingw/include $CPPFLAGS"
254
255    mingw="yes"
256    MSBITFIELDS="-mms-bitfields"
257    MWINDOWS="-mwindows"
258
259
260
261# checking for mingw32
262    AC_CHECK_LIB([mingw32], [main], FOUND_mingw32=yes)
263    if test x$FOUND_mingw32 = xyes; then
264        LIBS="$LIBS -lmingw32"
265    fi
266
267#-----------#
268# SDL(win) #
269#-----------#
270# checking for SDL-headers
271    AC_CHECK_HEADERS([SDL/SDL.h] ,,
272      [AC_MSG_ERROR([cannot find SDL headers]) ])
273
274#checking for libSDL
275    AC_CHECK_LIB([sdlmain], [main], FOUND_sdlmain=yes)
276    if test x$FOUND_sdlmain = xyes ; then
277       LIBS="$LIBS -lsdlmain"
278    else
279        echo "------------------"
280        echo "SDL library not found."
281        echo "please install the SDL library, which can be found at http://www.libsdl.org"
282        echo "------------------"
283        exit 1
284    fi
285    AC_CHECK_LIB([sdl], [main], FOUND_sdl=yes)
286    if test x$FOUND_sdl = xyes ; then
287       LIBS="$LIBS -lsdl"
288    else
289        echo "------------------"
290        echo "SDL library not found."
291        echo "please install the SDL library, which can be found at http://www.libsdl.org"
292        echo "------------------"
293        exit -1
294    fi
295
296#---------------#
297# open-GL (win) #
298#---------------#
299# checking gl header
300   AC_CHECK_HEADERS(GL/gl.h ,,
301      [AC_MSG_ERROR([cannot find opengl headers]) ])
302#   checking for Windows openGl library
303    AC_CHECK_LIB([opengl32], [main], FOUND_opengl32=yes, "gl/gl.h")
304    if test x$FOUND_opengl32 = xyes ; then
305        LIBS="$LIBS -lopengl32"
306    else
307         echo "------------------"
308         echo "opengl not found."
309         echo "please install the opengl package which can be found at http://www.opengl.org"
310         echo "------------------"
311         exit -1
312    fi
313
314# cheking for GLU-header
315    AC_CHECK_HEADERS([GL/glu.h] ,,
316      [AC_MSG_ERROR([cannot find opengl headers]) ])
317
318# checking for libGLU
319    AC_CHECK_LIB([glu32], [main], FOUND_glu32=yes)
320    if test x$FOUND_glu32 = xyes ; then
321        LIBS="$LIBS -lGLU32"
322    else
323         echo "------------------"
324         echo "GLU library not found."
325         echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org"
326         echo "------------------"
327         exit -1
328    fi
329
330#--------#
331# openAL #
332#--------#
333# checking for openAL-headers
334  AC_CHECK_HEADERS([AL/al.h] ,,
335      [AC_MSG_ERROR([cannot find openAL header.])])
336# checking for openAL-lib
337  AC_CHECK_LIB([OpenAL32], [main], [FOUND_openal=yes])
338  AC_CHECK_LIB([ALut], [main], [FOUND_ALut=yes])
339     if test x$FOUND_openal = xyes ; then
340      if test x$FOUND_ALut = xyes ; then
341       LIBS="$LIBS -lALut -lOpenAL32"
342     else
343        echo "------------------"
344        echo "openal library not found."
345        echo "please install the openal library, which can be found at http://www.openal.org"
346        echo "------------------"
347        exit -1
348      fi
349     fi
350    ;;
351
352#########
353#-------#
354# LINUX #
355#-------#
356#########
357 *-*-linux*)
358echo "Linux detected"
359
360 Linux="yes"
361
362##CPPFLAGS="-I/usr/include $CPPFLAGS"
363##LDFLAGS="-L/usr/lib $LDFLAGS"
364if test x$SHARED_LIB_PATH != xno; then
365        echo "setting new LDFLAGS with $SHARED_LIB_PATH"
366        LDFLAGS="-Wl,-rpath,$SHARED_LIB_PATH -L$SHARED_LIB_PATH $LDFLAGS"
367fi
368
369# checking gl header
370   AC_CHECK_HEADERS([GL/gl.h] ,,
371      [AC_MSG_ERROR([cannot find opengl headers]) ])
372
373#  checking for Unix GL
374   AC_CHECK_LIB([GL], [main], FOUND_GL=yes)
375   if test x$FOUND_GL = xyes ; then
376     LIBS="$LIBS -lGL"
377   else
378         echo "------------------"
379         echo "opengl not found."
380         echo "please install the opengl package which can be found at http://www.opengl.org"
381         echo "------------------"
382         exit -1
383   fi
384
385# cheking for GLU-header
386    AC_CHECK_HEADERS([GL/glu.h] ,,
387      [AC_MSG_ERROR([cannot find opengl headers]) ])
388
389#    AC_CHECK_LIB([GLU], [main], FOUND_GLU=yes)
390#    if test x$FOUND_GLU = xyes ; then
391      LIBS="$LIBS -lGLU"
392#    else
393#         echo "------------------"
394#         echo "GLU library not found."
395#         echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org"
396#         echo "------------------"
397#         exit -1
398#    fi
399
400# checking for GLEW-headers
401   AC_CHECK_HEADERS([GL/glew.h] ,,
402      [AC_MSG_ERROR([cannot find glew headers]) ])
403# checking for GLEW-lib
404  AC_CHECK_LIB([GLEW], [main], FOUND_GLEW=yes)
405   if test x$FOUND_GLEW = xyes ; then
406     LIBS="$LIBS -lGLEW"
407   else
408         echo "------------------"
409         echo "glew not found."
410         echo "please install the glew package which can be found at http://glew.sourceforge.net"
411         echo "------------------"
412         exit -1
413   fi
414
415#--------#
416# openAL #
417#--------#
418# checking for openAL-headers
419  AC_CHECK_HEADERS([AL/al.h] ,,
420      [AC_MSG_ERROR([cannot find openAL header.])])
421# checking for openAL-lib
422  AC_CHECK_LIB([openal], [main], [FOUND_openal=yes])
423     if test x$FOUND_openal = xyes ; then
424       LIBS="$LIBS -lopenal"
425     else
426        echo "------------------"
427        echo "openal library not found."
428        echo "please install the openal library, which can be found at http://www.openal.org"
429        echo "------------------"
430        exit -1
431     fi
432# checking for alut
433  AC_CHECK_HEADERS([AL/alut.h] ,,
434      [AC_MSG_ERROR([cannot find openAL Utility Toolkit (alut) header.])])
435  AC_CHECK_LIB([alut], [main], [FOUND_alut=yes])
436     if test x$FOUND_alut = xyes ; then
437       LIBS="-lalut $LIBS"
438     fi
439
440# checking for SDL
441  AC_MSG_CHECKING([for SDL-version])
442  SDL_VERSION=`sdl-config --version`
443  echo $SDL_VERSION
444
445   CPPFLAGS="$CPPFLAGS `sdl-config --cflags`"
446   AC_CHECK_HEADERS([SDL.h] ,,
447      [AC_CHECK_HEADERS([SDL/SDL.h] ,,AC_MSG_ERROR([cannot find SDL header. please download from libsdl.org])]))
448   LIBS="`sdl-config --libs` $LIBS"
449   AC_CHECK_LIB([SDL], [main], [FOUND_SDL=yes])
450    if test x$FOUND_SDL = xyes ; then
451     echo `sdl-config --libs`
452    else
453        echo "------------------"
454        echo "SDL library not found."
455        echo "please install the SDL library, which can be found at http://www.libsdl.org"
456        echo "------------------"
457        exit -1
458     fi
459
460    ;;
461
462#############
463#-----------#
464# MAC -OS X #
465#-----------#
466#############
467 *darwin*)
468 echo "OS X detected"
469
470 osX="yes"
471
472 CPPFLAGS="-I/sw/include -I/sw/include $CPPFLAGS"
473# checking gl header
474   AC_CHECK_HEADERS([OpenGL/gl.h] ,,
475      [AC_MSG_ERROR([cannot find opengl headers]) ])
476# cheking for GLU-header
477    AC_CHECK_HEADERS([OpenGL/glu.h] ,,
478      [AC_MSG_ERROR([cannot find opengl headers]) ])
479
480   LIBS="$LIBS -framework OpenGL"
481
482
483## SDL-check
484       SDL_CFLAGS=`sdl-config --cflags`
485       SDL_LIBS=`sdl-config --libs`
486       CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
487       LIBS="$LIBS $SDL_LIBS"
488
489
490# checking for SDL-headers
491#    AC_CHECK_HEADERS(SDL/SDL.h ,,
492#      [AC_MSG_ERROR([cannot find SDL headers]) ])
493
494## checking for SDL
495#    SDL_VERSION=1.2.7
496#    AM_PATH_SDL($SDL_VERSION,
497#      :,
498#      AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
499#      )
500
501
502    ;;
503
504  *)
505    ;;
506esac
507
508AC_SUBST(MSBITFIELDS)
509
510###################################
511## CHECKING FOR HEADERS AND LIBS ##
512###################################
513
514#---------#
515# SDL_ttf #
516#---------#
517# checking for SDL_ttf-headers
518  AC_CHECK_HEADERS([SDL_ttf.h] ,,
519      [AC_CHECK_HEADERS([SDL/SDL_ttf.h] ,,AC_MSG_ERROR([cannot find SDL_ttf header.])]))
520# checking for SDL_ttf-lib
521  AC_CHECK_LIB([SDL_ttf], [TTF_OpenFont], [FOUND_SDL_ttf=yes])
522     if test x$FOUND_SDL_ttf = xyes ; then
523       LIBS="$LIBS -lSDL_ttf"
524     else
525        echo "------------------"
526        echo "SDL_ttf library not found."
527        echo "please install the SDL_ttf library, which can be found at http://www.libsdl.org/projects/SDL_ttf/"
528        echo "------------------"
529        exit -1
530     fi
531
532#-----------#
533# SDL_Image #
534#-----------#
535# checking for SDL_image-headers
536AC_CHECK_HEADERS([SDL_image.h] ,,
537    [AC_CHECK_HEADERS([SDL/SDL_image.h],, AC_MSG_ERROR([SDL_image header not found.]))])
538# checking for SDL_image-lib
539AC_CHECK_LIB([SDL_image], [main], [FOUND_SDL_image=yes])
540   if test x$FOUND_SDL_image = xyes ; then
541     LIBS="$LIBS -lSDL_image"
542   else
543      echo "------------------"
544      echo "SDL_image library not found."
545      echo "please install the SDL_image library, which can be found at http://www.libsdl.org/projects/SDL_image/"
546      echo "------------------"
547      exit -1
548   fi
549
550#-----#
551# ogg #
552#-----#
553# checking for ogg-headers
554  AC_CHECK_HEADERS([ogg/ogg.h] ,,
555      [AC_MSG_ERROR([cannot find ogg header.])])
556# checking for ogg-lib
557  AC_CHECK_LIB([ogg], [main], [FOUND_ogg=yes])
558     if test x$FOUND_ogg = xyes ; then
559       LIBS="$LIBS -logg"
560     else
561        echo "------------------"
562        echo "ogg library not found."
563        echo "please install the ogg library, which can be found at http://www.xiph.org/ogg/vorbis/index.html"
564        echo "------------------"
565        exit -1
566     fi
567
568#--------#
569# vorbis #
570#--------#
571# checking for vorbis-lib
572  AC_CHECK_LIB([vorbis], [main], [FOUND_vorbis=yes])
573     if test x$FOUND_vorbis = xyes ; then
574       LIBS="$LIBS -lvorbis"
575     else
576        echo "------------------"
577        echo "vorbis library not found."
578        echo "please install the vorbis library, which can be found at http://www.xiph.org/ogg/vorbis/index.html"
579        echo "------------------"
580        exit -1
581     fi
582
583#------------#
584# vorbisfile #
585#------------#
586# checking for vorbis-headers
587  AC_CHECK_HEADERS([vorbis/vorbisfile.h] ,,
588      [AC_MSG_ERROR([cannot find vorbisfile header.])])
589# checking for vorbisfile-lib
590  AC_CHECK_LIB([vorbisfile], [main], [FOUND_vorbisfile=yes])
591     if test x$FOUND_vorbisfile = xyes ; then
592       LIBS="$LIBS -lvorbisfile"
593     else
594        echo "------------------"
595        echo "vorbisfile library not found."
596        echo "please install the vorbisfile library, which can be found at http://www.xiph.org/ogg/vorbis/index.html"
597        echo "------------------"
598        exit -1
599     fi
600
601#-----#
602# GTK #
603#-----#
604if test x$def_gtk = xyes; then
605        #PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.0.3 gthread-2.0 >= 2.0.3, have_gtk2=yes, have_gtk2=no)
606        AC_MSG_CHECKING([for gtk2.0])
607        if `$PKG_CONFIG --exists gtk+-2.0`; then
608                echo "yes"
609                have_gtk2=yes
610                GTK2_LIBS=`$PKG_CONFIG --libs gtk+-2.0`
611                GTK2_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0`
612                AC_DEFINE_UNQUOTED(HAVE_GTK2, 1, [if we have GTK2])
613                if test $DEBUG -ge 3; then
614                 echo "cflags: $GTK2_CFLAGS"
615                 echo "libs: $GTK2_LIBS"
616                fi
617        else
618                echo "no"
619        fi
620
621fi
622AC_SUBST(GTK2_LIBS)
623AC_SUBST(GTK2_CFLAGS)
624AM_CONDITIONAL(HAVE_GTK2, test x$have_gtk2 = xyes)
625
626#---------#
627# libcURL #
628#---------#
629if test x$def_curl = xyes; then
630
631 AC_CHECK_HEADERS([curl/curl.h], [curlHeader="yes"], [curlHeader="no"])
632 AC_CHECK_LIB([curl], [main], [FOUND_curl=yes])
633 if test x$curlHeader = xyes & test x$FOUND_curl = xyes ; then
634  have_curl=yes
635  CURL_LIBS=`curl-config --libs`
636  CURLCFLAGS=`curl-config --cflags`
637  AC_DEFINE_UNQUOTED(HAVE_CURL, 1, [if we have CURL])
638 else
639  have_curl=no
640 fi
641
642fi
643AC_SUBST(CURL_LIBS)
644AC_SUBST(CURL_CFLAGS)
645AM_CONDITIONAL(HAVE_CURL, test x$have_curl = xyes)
646
647#--------#
648# efence #
649#--------#
650if test x$def_efence = xyes ; then
651  AC_CHECK_LIB([efence], [main], [FOUND_efence=yes])
652   if test x$FOUND_efence = xyes ; then
653      LIBS="$LIBS -lefence"
654   fi
655
656fi
657
658# FIXME: Replace `main' with a function in `-lm':
659 AC_CHECK_LIB([m], [main])
660
661
662# Checks for header files.
663AC_HEADER_STDC
664AC_CHECK_HEADERS([stdlib.h string.h])
665
666# Checks for typedefs, structures, and compiler characteristics.
667AC_HEADER_STDBOOL
668
669# Checks for library functions.
670AC_FUNC_MALLOC
671AC_CHECK_FUNCS([bzero sqrt])
672
673######################
674## OUTPUT CONFIGURE ##
675######################
676AC_CONFIG_FILES([Makefile
677                 src/Makefile
678                 src/lib/Makefile
679                 src/lib/graphics/Makefile
680                 src/lib/graphics/importer/Makefile
681                 src/lib/graphics/spatial_separation/Makefile
682                 src/lib/sound/Makefile
683                 src/lib/event/Makefile
684                 src/lib/physics/Makefile
685                 src/lib/particles/Makefile
686                 src/lib/collision_detection/Makefile
687                 src/lib/shell/Makefile
688                 src/lib/gui/Makefile
689                 src/lib/tinyxml/Makefile
690                 src/subprojects/Makefile
691                 src/subprojects/testmain/Makefile
692                 src/subprojects/importer/Makefile
693                 src/subprojects/particles/Makefile
694                 src/subprojects/collision_detection/Makefile
695                 ])
696
697AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.