./configure не делает makefile

Я пытаюсь установить GTKTerm

в своем дистрибутиве 12.04 LTS. Я прочитал файл INSTALL для установки программного обеспечения. Сначала я запускаю ./configure, никаких ошибок не отображается, но нет make-файла, поэтому, когда я запускаю make, я получаю эту ошибку make: *** No targets specified and no makefile found. Stop.. Здесь вывод ./configure

loading cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal-1.4... missing
checking for working autoconf... missing
checking for working automake-1.4... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking for strerror in -lcposix... no
checking for gcc... gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for Cygwin environment... no
checking for mingw32 environment... no
checking host system type... x86_64-unknown-linux-gnu
checking build system type... x86_64-unknown-linux-gnu
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking for a sed that does not truncate output... /bin/sed
checking whether ln -s works... yes
checking how to recognise dependent libraries... pass_all
checking for object suffix... o
checking for executable suffix... no
checking command to parse /usr/bin/nm -B output... ok
checking for dlfcn.h... yes
checking for ranlib... ranlib
checking for strip... strip
checking for objdir... .libs
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking whether -lc should be explicitly linked in... no
creating libtool
checking for pkg-config... /usr/bin/pkg-config
checking for gtk+-2.0 gdk-2.0... 
[d3 ] Как я могу решить?

1
задан 19 December 2015 в 16:48

1 ответ

make принимает входной файл makefile. Файл Makefile обычно называется makefile или Makefile. Команда configue должна генерировать make-файл, так что make может быть в свою очередь выполнен. Проверьте, был ли make-файл создан в вашем рабочем каталоге.

-1
ответ дан 23 May 2018 в 14:56
  • 1
    Это проблема, после ./configure нет make-файла. В папке всего два файла makefile (так как до ./configure): Makefile.am и Makefile.in – linofex 19 December 2015 в 17:06
  • 2
    вы в root? – orvi 19 December 2015 в 17:11
  • 3
    Да, я управлял коммандо с sudo – linofex 19 December 2015 в 17:13
  • 4
    Вы установили все зависимости? GtkTerm имеет несколько зависимостей - Gtk+3.0 (version 3.12 or higher) vte (version 0.40 or higher) intltool (version 0.40.0 or higher) – orvi 19 December 2015 в 17:24
  • 5
    Или вы можете посмотреть мое редактирование, чтобы посмотреть, как это сделать :). – Tshilidzi Mudau 19 December 2015 в 17:28

Другие вопросы по тегам:

Похожие вопросы: