diff options
author | glx <glx@openttd.org> | 2007-01-13 18:44:38 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-01-13 18:44:38 +0000 |
commit | 1f0206f62d478540f7b96a86999944b0cdac7492 (patch) | |
tree | e5afa0e91599a7a2b80675150ffd2851eb438b4f | |
parent | 5f00d575130aba68339e612d841678f09a96d88a (diff) | |
download | openttd-1f0206f62d478540f7b96a86999944b0cdac7492.tar.xz |
(svn r8109) -Fix r5693: ignore .hpp to avoid problems with deps
-rw-r--r-- | Makefile.src.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.src.in b/Makefile.src.in index 00fe53cec..06d6f43b7 100644 --- a/Makefile.src.in +++ b/Makefile.src.in @@ -194,10 +194,10 @@ endif endif -# Avoid problems with deps if a .h file is deleted without the deps +# Avoid problems with deps if a .h/.hpp file is deleted without the deps # being updated. Now the Makefile continues, the deps are recreated # and all will be fine. -%.h: +%.h %.hpp: @true |