summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-25 15:46:32 +0000
committertron <tron@openttd.org>2005-01-25 15:46:32 +0000
commit489f68a083b76332e699f874b6132a382ba99b04 (patch)
tree9ee5ea82146743afdc1ddbdf4abdbbe3ae29c866 /Makefile
parentf564fa528f9c2f5903d5eb8bfc4bb4db58e355f5 (diff)
downloadopenttd-489f68a083b76332e699f874b6132a382ba99b04.tar.xz
(svn r1669) Rename all ttd_XXX to just XXX, because we already know who we are (;
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 56a8993d5..d9c5413d7 100644
--- a/Makefile
+++ b/Makefile
@@ -658,7 +658,7 @@ else
C_SOURCES += extmidi.c unix.c
endif
-ttd_OBJS = $(C_SOURCES:%.c=%.o) $(CXX_SOURCES:%.cpp=%.o)
+OBJS = $(C_SOURCES:%.c=%.o) $(CXX_SOURCES:%.cpp=%.o)
ifdef BEOS
CXX_SOURCES += os/beos/bemidi.cpp
@@ -667,15 +667,15 @@ endif
ifdef WIN32
# Resource file
-ttd_OBJS += winres.o
+OBJS += winres.o
endif
ifdef WITH_DIRECTMUSIC
CXX_SOURCES += w32dm2.cpp
endif
-ttd_DEPS1 = $(foreach obj,$(ttd_OBJS),.deps/$(obj))
-ttd_DEPS = $(ttd_DEPS1:%.o=%.P)
+DEPS1 = $(foreach obj,$(OBJS),.deps/$(obj))
+DEPS = $(DEPS1:%.o=%.P)
LANG_TXT = $(filter-out %.unfinished.txt,$(wildcard lang/*.txt))
LANGS = $(LANG_TXT:%.txt=%.lng)
@@ -715,9 +715,9 @@ $(ENDIAN_CHECK): endian_check.c
@$(CC) $(BASECFLAGS) $(CDEFS) endian_check.c -o $@
-$(TTD): table/strings.h $(ttd_OBJS) $(MAKE_CONFIG)
+$(TTD): table/strings.h $(OBJS) $(MAKE_CONFIG)
@echo '===> Linking $@'
- @$(C_LINK) $@ $(TTDLDFLAGS) $(ttd_OBJS) $(LIBS)
+ @$(C_LINK) $@ $(TTDLDFLAGS) $(OBJS) $(LIBS)
$(OSX): $(TTD)
@rm -fr "$(OSXAPP)"
@@ -848,7 +848,7 @@ FORCE:
clean:
@echo '===> Cleaning up'
- @rm -rf .deps *~ $(TTD) $(STRGEN) core table/strings.h $(LANGS) $(ttd_OBJS) endian.h $(ENDIAN_CHECK)
+ @rm -rf .deps *~ $(TTD) $(STRGEN) core table/strings.h $(LANGS) $(OBJS) endian.h $(ENDIAN_CHECK)
mrproper: clean
@rm -rf $(MAKE_CONFIG)
@@ -921,7 +921,7 @@ upgradeconf: $(MAKE_CONFIG)
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
# Introduce the dependencies
--include $(ttd_DEPS)
+-include $(DEPS)
# This compiles the object file as well as silently updating its dependencies
# list at the same time. It is not an issue that they aren't around during the