I can't install anything in .tar.gz
format because it tells me make: *** No targets specified and no makefile found. Stop.
What do I do?
Asked
Active
Viewed 1,431 times
0

kookman98
- 145
- 2
- 10
1 Answers
2
something you are missing ... either name not correctly spelled ... i will refer you to this
Error when installing Makefile: "make: *** No targets specified and no makefile found. Stop."

muhammad usman
- 36
- 3
.tar.gz
files are just compressed archives (tar stands for TapeARchive and gz stands for GZipped) You will have to extract the contents to a folder, typically something liketar xvzf filename.tar.gz
Thencd
to the folder (it will include any necessary.make
files) and run any necessary commands to build the software and install it. Typically./configure
make
andmake install
(this last one may requiresudo
appended to it. Consult thereadme
files usually included in the archive. – hmayag Feb 04 '14 at 21:12no makefile found
– kookman98 Feb 04 '14 at 22:11.make
file then perhaps there's a binary installer or shell script (.sh
). Ordinarily there should be ainstall
orreadme
text file with instructions on how to procceed. – hmayag Feb 05 '14 at 08:04p7zip_9.20.1_src_all.tar.bz2
That contains the source that you could compile withmake
You could also download the binaries for linux. – user3121023 Feb 05 '14 at 09:32