(svn r22919) -Doc: Some doxygen sprinkles
[openttd/fttd.git] / Makefile.setting.in
blob5566db981739f4dbcab4ec87d987ef953cbdf0e4
1 # $Id$
3 # This file is part of OpenTTD.
4 # 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.
5 # 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.
6 # 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 <http://www.gnu.org/licenses/>.
8 SETTINGSGEN      = !!SETTINGSGEN!!
9 ENDIAN_CHECK     = !!ENDIAN_CHECK!!
10 SRC_DIR          = !!SRC_DIR!!
11 CXX_BUILD        = !!CXX_BUILD!!
12 CFLAGS_BUILD     = !!CFLAGS_BUILD!!
13 LDFLAGS_BUILD    = !!LDFLAGS_BUILD!!
14 STAGE            = !!STAGE!!
15 SETTING_OBJS_DIR = !!SETTING_OBJS_DIR!!
17 ENDIAN_TARGETS := endian_host.h endian_target.h $(ENDIAN_CHECK)
19 # Check if we want to show what we are doing
20 ifdef VERBOSE
21         Q =
22         E = @true
23 else
24         Q = @
25         E = @echo
26 endif
28 all: table/settings.h
30 settingsgen.o: $(SRC_DIR)/settingsgen/settingsgen.cpp $(SRC_DIR)/string_func.h $(SRC_DIR)/strings_type.h $(SRC_DIR)/misc/getoptdata.h $(SRC_DIR)/ini_type.h $(SRC_DIR)/core/smallvec_type.hpp
31         $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/%.cpp=%.cpp)'
32         $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSETTINGSGEN -c -o $@ $<
34 alloc_func.o: $(SRC_DIR)/core/alloc_func.cpp endian_host.h
35         $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/%.cpp=%.cpp)'
36         $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSETTINGSGEN -c -o $@ $<
38 getoptdata.o: $(SRC_DIR)/misc/getoptdata.cpp $(SRC_DIR)/misc/getoptdata.h
39         $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/misc/%.cpp=%.cpp)'
40         $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSETTINGSGEN -c -o $@ $<
42 string.o: $(SRC_DIR)/string.cpp endian_host.h
43         $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/%.cpp=%.cpp)'
44         $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSETTINGSGEN -c -o $@ $<
46 ini_load.o: $(SRC_DIR)/ini_load.cpp $(SRC_DIR)/core/alloc_func.hpp $(SRC_DIR)/core/mem_func.hpp $(SRC_DIR)/ini_type.h $(SRC_DIR)/string_func.h
47         $(E) '$(STAGE) Compiling $(<:$(SRC_DIR)/%.cpp=%.cpp)'
48         $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) -DSETTINGSGEN -c -o $@ $<
50 $(SETTINGSGEN): alloc_func.o string.o ini_load.o settingsgen.o getoptdata.o
51         $(E) '$(STAGE) Compiling and Linking $@'
52         $(Q)$(CXX_BUILD) $(LDFLAGS_BUILD) $^ -o $@
54 table/settings.h: $(SETTINGSGEN) $(SRC_DIR)/table/settings.h.preamble $(SRC_DIR)/table/settings.h.postamble $(SRC_DIR)/table/*.ini
55         $(E) '$(STAGE) Generating $@'
56         @mkdir -p table
57         $(Q)./$(SETTINGSGEN) -o table/settings.h -b $(SRC_DIR)/table/settings.h.preamble -a $(SRC_DIR)/table/settings.h.postamble $(SRC_DIR)/table/*.ini
59 # The targets to compile the endian-code
61 endian_host.h: $(ENDIAN_CHECK)
62         $(E) '$(STAGE) Testing endianness for host'
63         $(Q)./$(ENDIAN_CHECK) > $@
65 $(ENDIAN_CHECK): $(SRC_DIR)/endian_check.cpp
66         $(E) '$(STAGE) Compiling and Linking $@'
67         $(Q)$(CXX_BUILD) $(CFLAGS_BUILD) $< -o $@
69 depend:
71 clean:
72         $(E) '$(STAGE) Cleaning up settings files'
73         $(Q)rm -f settingsgen.o alloc_func.o getoptdata.o ini_load.o $(SETTINGSGEN) $(ENDIAN_TARGETS) table/settings.h
75 mrproper: clean
77 .PHONY: all mrproper depend clean