salut,
J'ai un projet en C très simple. Dans le répertoire /src j'ai trois fichiers :
- afficher.c
- afficher.h
- main.c
Je suis le tutoriel pour obtenir un ./configure a partir de l'url
http://ymettier.free.fr/articles_lma...75/lmag75.html.
Je fais les étapes 1 à 5... sans problème.
Mais arrivé à l'étape 6, je fais les commandes qu'il indique à savoir :
Et là j'ai un beau :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 aclocal autoconf automake -a -c
configure.ac:3: installing `./missing'
configure.ac:3: installing `./install-sh'
automake: no `Makefile.am' found for any configure output
J'avoue ne pas comprendre... Voici mon configure.ac
Comment régler le problème ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 AC_PREREQ(2.61) AC_INIT(bonjour, 0.1, ymettier@libertysurf.fr) AM_INIT_AUTOMAKE AC_PROG_CC AC_PROG_MAKE_SET AC_CONFIG_FILES([ Makefile src/Makefile ]) AC_OUTPUT
Partager