Changeset 2103:a979fcdda073 in lemon-0.x
- Timestamp:
- 06/21/06 10:35:23 (18 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2794
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r2056 r2103 2 2 3 3 EXTRA_DIST = \ 4 build-aux/config.rpath \5 build-aux/mkinstalldirs \6 4 LICENSE \ 7 ABOUT-NLS \8 5 lemon.spec \ 9 6 autopackage/default.apspec.in \ … … 14 11 MAYBE_DOC = doc 15 12 endif 16 if WANT_GUI17 MAYBE_GUI = gui18 endif19 13 if WANT_DEMO 20 14 MAYBE_DEMO = demo … … 24 18 endif 25 19 26 SUBDIRS = lemon po m4 $(MAYBE_BENCHMARK) $(MAYBE_DEMO) $(MAYBE_GUI) $(MAYBE_DOC) test20 SUBDIRS = lemon $(MAYBE_BENCHMARK) $(MAYBE_DEMO) $(MAYBE_DOC) test 27 21 28 22 MRPROPERFILES = \ … … 38 32 build-aux/ltmain.sh \ 39 33 build-aux/missing \ 40 build-aux/mkinstalldirs \41 build-aux/config.rpath \42 34 doc/Makefile.in \ 43 35 doc/doxygen.log \ … … 46 38 test/Makefile.in \ 47 39 benchmark/Makefile.in \ 48 demo/Makefile.in \ 49 gui/icons/Makefile.in \ 50 gui/Makefile.in \ 51 ABOUT-NLS \ 52 m4/Makefile.in \ 53 m4/lib-link.m4 \ 54 m4/printf-posix.m4 \ 55 m4/uintmax_t.m4 \ 56 m4/signed.m4 \ 57 m4/iconv.m4 \ 58 m4/inttypes.m4 \ 59 m4/longlong.m4 \ 60 m4/glibc21.m4 \ 61 m4/inttypes_h.m4 \ 62 m4/codeset.m4 \ 63 m4/longdouble.m4 \ 64 m4/nls.m4 \ 65 m4/intmax.m4 \ 66 m4/lib-prefix.m4 \ 67 m4/glibc2.m4 \ 68 m4/xsize.m4 \ 69 m4/lcmessage.m4 \ 70 m4/lib-ld.m4 \ 71 m4/ulonglong.m4 \ 72 m4/wint_t.m4 \ 73 m4/progtest.m4 \ 74 m4/inttypes-pri.m4 \ 75 m4/stdint_h.m4 \ 76 m4/intdiv0.m4 \ 77 m4/isc-posix.m4 \ 78 m4/po.m4 \ 79 m4/size_max.m4 \ 80 m4/gettext.m4 \ 81 m4/wchar_t.m4 \ 82 po/Rules-quot \ 83 po/en@quot.header \ 84 po/insert-header.sin \ 85 po/quot.sed \ 86 po/en@boldquot.header \ 87 po/boldquot.sed \ 88 po/Makevars.template \ 89 po/remove-potcdate.sin \ 90 po/Makefile.in.in 40 demo/Makefile.in 91 41 92 42 doc-clean: -
bootstrap
r2043 r2103 76 76 fi 77 77 78 quiet || echo "Try using 'autoreconf -vi' instead of this."79 80 78 set -e 81 79 quiet || set -x 82 80 83 autopoint84 81 $aclocal -I m4 85 82 (quiet && exec > /dev/null; libtoolize --force --copy) -
configure.ac
r2068 r2103 17 17 AC_DISABLE_SHARED 18 18 AC_PROG_LIBTOOL 19 20 dnl i18n21 AM_GNU_GETTEXT_VERSION([0.14.2])22 AM_GNU_GETTEXT([external])23 19 24 20 if test x"$lx_cmdline_cxxflags_set" != x"set" -a "$GXX" = yes; then … … 58 54 AC_SUBST(DOXYGEN_INTERNAL_DOCS) 59 55 AM_CONDITIONAL([WANT_DOC], [test x"$enable_doc" != x"no"]) 60 61 dnl Disable/enable building the GUI62 AC_ARG_ENABLE([gui],63 AS_HELP_STRING([--enable-gui], [build the GUI])64 AS_HELP_STRING([--disable-gui], [do not build the GUI @<:@default@:>@]),65 [], [enable_gui=no])66 AC_MSG_CHECKING([whether to build the GUI])67 if test x"$enable_gui" != x"no"; then68 AC_MSG_RESULT([yes])69 else70 AC_MSG_RESULT([no])71 fi72 if test x"$enable_gui" != x"no"; then73 PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0 gtkmm-2.4 >= 2.6])74 fi75 AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"])76 56 77 57 dnl Disable/enable building the demo programs … … 126 106 demo/Makefile 127 107 test/Makefile 128 gui/Makefile129 po/Makefile.in130 m4/Makefile131 108 ]) 132 109 … … 146 123 echo build benchmarks.............. : $enable_benchmark 147 124 echo build demo programs........... : $enable_demo 148 echo build GUI..................... : $enable_gui149 125 echo 150 126 echo The packace will be installed in
Note: See TracChangeset
for help on using the changeset viewer.