0

当我尝试将任何压缩文件安装到 Linux 中时,我永远无法做到,因为:

  1. 当我执行./configure系统时说bash: ./configure: No such file or directory

  2. 当我执行sudo ./configure系统时说sudo: ./configure: command not found

  3. 最糟糕的是,当我执行make系统时说make:*** No rule to make target '/usr/lib64/qt-3.3/mkspecs/default/qmake.conf', needed by 'Makefile'. Stop.

  4. make install系统说make: *** No rule to make target '/usr/lib64/qt-3.3/mkspecs/default/qmake.conf', needed by 'Makefile'. Stop.

  5. 完成:我无法将存储库中没有的任何内容安装到我的系统中。

注意:我使用 Linux Mint XFCE 13 (Maya)。

我能做些什么来解决这个不愉快的问题?

4

1 回答 1

0

As ManDVD's Makefile says:

#############################################################################
# Makefile for building: mandvd
# Generated by qmake (1.07a) (Qt 3.3.8b) on: Sun Mar  8 18:32:50 2009
# Project:  mandvd.pro
# Template: app
# Command: $(QMAKE) -o Makefile mandvd.pro
#############################################################################

Makefile was autogenerated by qmake.

I'm no expert at using qmake, but I think executing qmake will re-generate Makefile, so then you can run make && sudo make install as INSTALL file says.

You should've already discovered project is kind of messy (if not discontinued at all), so take care, and may the force be with you :)

于 2012-11-28T04:05:59.250 回答