Tuesday, June 21, 2005

To update your object files:
  • if you changed the source file (.cpp) only, run:
    make install
  • if you change header files, run:
    make clobber install {removes all except source files} (or)
    make clean install {removes only .o files}
  • also you can use rm
    rm *.o
see more info at
Introduction to "make"

No comments:

Post a Comment