Pesquisar na Comunidade
Mostrando resultados para as tags ''makefile''.
Encontrado 2 registros
-
Pessoal, estou aprendendo a criar makefile então fiz um teste. Criei um main.c, funcao.h, funcao.c e o makefile. Quando executo o make dá esse erro: main.c: In function ‘funcao’: main.c:5:9: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token int main{ ^ main.c:9:1: error: expected ‘{’ at end of input } ^ make: ** [main.o] Erro 1 casa@Casa-945GZM-S2:~/Documentos/Meu_Makefile$ make main.c: In function ‘funcao’: main.c:5:12: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token int main( ){ ^ main.c:9:1: error: expected ‘{’ at end of input } ^ make: ** [main.o] Erro 1 Minha main.c: #include <stdio.h> #include <stdlib.h> #include "funcao.h" int main( ){ int x=10; funcao(x); return 0; } Quando eu tiro '#include "funcao.h"' funciona.
-
Pessoal, estou aprendendo a criar makefile então fiz um teste. Criei um main.c, funcao.h, funcao.c e o makefile. Quando executo o make dá esse erro: main.c: In function ‘funcao’: main.c:5:9: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token int main{ ^ main.c:9:1: error: expected ‘{’ at end of input } ^ make: ** [main.o] Erro 1 casa@Casa-945GZM-S2:~/Documentos/Meu_Makefile$ make main.c: In function ‘funcao’: main.c:5:12: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token int main( ){ ^ main.c:9:1: error: expected ‘{’ at end of input } ^ make: ** [main.o] Erro 1 Minha main.c: #include <stdio.h> #include <stdlib.h> #include "funcao.h" int main( ){ int x=10; funcao(x); return 0; }