]> git.sur5r.net Git - cc65/commit
Added a makefile dependency for the libraries' "extra" files.
authorGreg King <gregdk@users.sf.net>
Wed, 28 Jun 2017 09:51:46 +0000 (05:51 -0400)
committerGreg King <gregdk@users.sf.net>
Wed, 28 Jun 2017 09:51:46 +0000 (05:51 -0400)
commitd1501731e4234354c21907a7ee42011d8d7aaf99
treea738edff66805d58ec11d6d36263e6963d384d93
parent4cf7ee1dba73af6d477a78876a8f4664897d629b
Added a makefile dependency for the libraries' "extra" files.

Some of the files in "libsrc/*/extra/" include other library files.  But, the "lib/*.o" files weren't rebuilt when those other files changed.

The new dependency rules must be "bootstrapped".  You must force a rebuild of all of the extra library object files (it will create the dependency files).  Use these commands:

rm lib/*.o
make lib
libsrc/Makefile