summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-25 15:35:11 +0000
committertron <tron@openttd.org>2005-01-25 15:35:11 +0000
commit75045328ec15f12b1cf5d72d5b332a566e4cdffa (patch)
tree5a621a1ad0dac7179494a78415ca17cd397406a8 /Makefile
parent6e532184bb5b410db485047bba1f43ede1dbf8cd (diff)
downloadopenttd-75045328ec15f12b1cf5d72d5b332a566e4cdffa.tar.xz
(svn r1665) Remove VERBOSE flag, because it was only partially implemented
Add "info" target instead, which prints out some relevant variables used in the Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b8839d4db..4181d3524 100644
--- a/Makefile
+++ b/Makefile
@@ -64,7 +64,6 @@
# where it normally would print the revision number
# MIDI: if set, it will use it as custom path to midi player.
# If unset, it will use the hardcoded path in the c code
-# VERBOSE: actually show the commands used for compilation.
# WITH_NETWORK: enable networking
# DEDICATED: allows compilation on UNIX without SDL. Useful for dedicated servers
#
@@ -719,7 +718,6 @@ $(ENDIAN_CHECK): endian_check.c
$(TTD): table/strings.h $(ttd_OBJS) $(MAKE_CONFIG)
@echo '===> Linking $@'
- @$(if $(VERBOSE), echo '$(C_LINK) $@ $(TTDLDFLAGS) $(ttd_OBJS) $(LIBS)')
@$(C_LINK) $@ $(TTDLDFLAGS) $(ttd_OBJS) $(LIBS)
$(OSX): $(TTD)
@@ -934,7 +932,6 @@ DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
%.o: %.c $(MAKE_CONFIG) endian.h table/strings.h
@echo '===> Compiling $<'
- @$(if $(VERBOSE), echo '$(C_BUILD) $<')
@$(C_BUILD) $< -Wp,-MD,.deps/$(*F).pp
@-cp .deps/$(*F).pp .deps/$(*F).P; \
tr ' ' '\012' < .deps/$(*F).pp \
@@ -946,3 +943,9 @@ DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
%.o: %.cpp $(MAKE_CONFIG) endian.h table/strings.h
@echo '===> Compiling $<'
@$(CXX_BUILD) $< -o $@
+
+
+info:
+ @echo 'CFLAGS = $(CFLAGS)'
+ @echo 'LDFLAGS = $(LDFLAGS)'
+ @echo 'LIBS = $(LIBS)'