Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/11/2007, 15:15
Kajjin
 
Fecha de Ingreso: noviembre-2007
Mensajes: 4
Antigüedad: 17 años, 2 meses
Puntos: 0
Re: No me compila el main (undefined reference to...)

INCLUDES= ./

defecto:
@echo "make binario -> Crea el ejecutable. make clean -> Borra ficheros basura"

binario: tdaparde ppal
g++ -omain.bin ParDe.o main.o
doxywizard

tdaparde:
g++ -c -oParDe.o ParDe.cpp -I ${INCLUDES}

ppal:
g++ -c -omain.o main.cpp -I ${INCLUDES}

clean:
rm -f -r *~
rm -f -r *.o

Ahi está el makefile, a ver si puedes encontrarme el error.

Gracias ;)