Dev C++ Compiling error missing seperator

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Badfitz66
    New Member
    • Oct 2014
    • 1

    #1

    Dev C++ Compiling error missing seperator

    When I try to use the 'make' command, I get an error from line 5 in my Makefile

    line 5 is: g++ $(OBJ) -o Raytrace.exe

    I'm following this tutorial: https://www.youtube.com/watch?v=wbhOJDH Np1U&index=14&l ist=UURMDtZfzPs paYFX6mkM4Qyw
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    We would need to see the error you get and rather more of the make file than just line 5.

    However typically things that trip people up in make files is failing to use tabs at the start of lines that define commands to be performed for a given rule but using spaces instead.

    Comment

    Working...