Eindelijk is het mij gelukt om een degelijk werkende linux-installatie op mijn bakje te krijgen. (dankzij Ubuntu).
Ik heb al het één en het ander kunnen installeren (via source of apt-get), maar nu loopt het toch mis.
Ik wil het programma tvtime-1.0.1 installeren (om tv te kunnen zien).
Zoals er in de Install staat voer ik eerst ./configure --prefix=/usr --sysconfdir=/etc uit.
Vervolgens zou ik om te compileren gewoon "make" moeten invoeren, maar dan krijg ik volgende fout:
In de directory staan 2 makefiles, namelijk Makefile.in en Makefile.am
./configure geeft volgens mij geen fouten:
Iemand een idee wat er verkeerd gaat / wat ik over het hoofd zie?
Ik heb al het één en het ander kunnen installeren (via source of apt-get), maar nu loopt het toch mis.
Ik wil het programma tvtime-1.0.1 installeren (om tv te kunnen zien).
Zoals er in de Install staat voer ik eerst ./configure --prefix=/usr --sysconfdir=/etc uit.
Vervolgens zou ik om te compileren gewoon "make" moeten invoeren, maar dan krijg ik volgende fout:
code:
1
| make: *** Geen doelen gespecificeerd en geen makefile gevonden. Stop. |
In de directory staan 2 makefiles, namelijk Makefile.in en Makefile.am
./configure geeft volgens mij geen fouten:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
| checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for gcc... yes checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... no checking whether g++ accepts -g... no checking dependency style of g++... none checking for g++... no root@i386DX:/home/lionel/Desktop/tvtime-1.0.1 # ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for gcc... yes checking for g++... no checking for c++... no checking for gpp... no checking for aCC... no checking for CC... no checking for cxx... no checking for cc++... no checking for cl... no checking for FCC... no checking for KCC... no checking for RCC... no checking for xlC_r... no checking for xlC... no checking whether we are using the GNU C++ compiler... no checking whether g++ accepts -g... no checking dependency style of g++... none checking for g++... no |
Iemand een idee wat er verkeerd gaat / wat ik over het hoofd zie?