#include <iostream>
#include <string>
#include <fstream>
int main (void)
{
// Nothing here.
}
I am using Makefile to compile.
CXXFLAGS = -std=c++11 -O2 -g -Wall -fmessage-length=0
OBJS = ProgramEntry.o
LIBS =
TARGET = Reading
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)
Resulting in undefined reference.
undefined reference to --
I think makefile is not using any header file. May I know how to fix the make file, in case if I add a directory for header files.
It is using the headers, or you'd get a compiler error, not a linkage error.
Change the following line to this:
Or
To add all objects in the current directory.