-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.in
47 lines (38 loc) · 1020 Bytes
/
configure.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
AC_INIT
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(gv,2.0a1)
AM_CONFIG_HEADER(config.h)
AC_PREFIX_DEFAULT(/usr/local/Geomview2)
AC_PROG_CC
AC_PROG_CXX
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_ARG_ENABLE(gltrace,
[--enable-gltrace turn on tracing of GL calls],
[ if test "$enableval" != "no" ; then
AC_DEFINE(GEOM_GLTRACE, 1)
fi ]
)
LF_LINK_HEADERS(Common/Bases \
Common/Io \
Common/Ut \
Common/Geometry \
Common/Mg \
Common/Geom \
Common/Gv \
glTrace \
)
LF_SET_INCLUDES
AC_OUTPUT(Makefile
m4/Makefile
Common/Makefile
Common/Ut/Makefile
Common/Io/Makefile
Common/Mg/Makefile
Common/Bases/Makefile
Common/Geometry/Makefile
Common/Geom/Makefile
Common/Gv/Makefile
glTrace/Makefile
Py/Makefile
)