Linux

我正在嘗試執行 build compton-conf,但它告訴我“沒有指定目標,也沒有找到 makefile。停止。”

  • October 6, 2021

我正在嘗試建構compton-conf,但我一直在標題中得到它。我正在執行 Arch Linux。

我是 Linux 新手,但在沒有出現任何錯誤之前我建構了幾個程序。

ls進入目錄給了我:

[abdullah@abdullah ~]$ cd compton-conf
[abdullah@abdullah compton-conf]$ make
make: *** No targets specified and no makefile found.  Stop.
[abdullah@abdullah compton-conf]$ ls
AUTHORS    CMakeLists.txt    compton-conf.desktop.in  COPYING         maindialog.ui
autostart  compton-conf      compton.conf.example     maindialog.cpp  README.md
CHANGELOG  compton-conf.cpp  compton-conf.h           maindialog.h    translations
[abdullah@abdullah compton-conf]$ scrot -u

該項目基於cmake建構工具。

您應該在目前項目目錄中Makefile執行之前生成。cmake

然後,您可以執行make.

有關更多資訊,請參閱man 1 cmake

引用自:https://unix.stackexchange.com/questions/516386