/* $Id$ */
/*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see .
*/
/**
* @file depend/depend.cpp Custom implementation of Makedepend.
*
* We previously used makedepend, but that could not handle the amount of
* files we have and does not handle conditional includes in a sane manner.
* This caused many link problems because not enough files were recompiled.
* This has lead to the development of our own dependency generator. It is
* meant to be a substitute to the (relatively slow) dependency generation
* via gcc. It thus helps speeding up compilation. It will also ignore
* system headers making it less error prone when system headers are moved
* or renamed.
*/
#include
#include
#include
#include
#include
#include
#include