This is my makefile. I would also like to generate .pdb files. I am already using the -g option however I dont see any file created with .pdb extension. The post here also stated to use -g option.
CXX = g++
CXXFLAGS = -Wall -g
all: comment \
     test
comment:
    @echo ------Starting Build Process-----------------
test:  main.o car.o student.o   house.o 
    $(CXX) $(CXXFLAGS) -o test main.o car.o student.o house.o
main.o: student.h house.h    main.cpp
    $(CXX) $(CXXFLAGS) -c main.cpp
car.o: car.h
student.o: student.h car.h
house.o: house.h 
clean:
    rm -rf *.o test
Any suggestions on how to generate pdb files ?
 
     
     
    