(svn r1665) Remove VERBOSE flag, because it was only partially implemented
authortron
Tue, 25 Jan 2005 15:35:11 +0000
changeset 1163 044430212516
parent 1162 791d1c4c08fe
child 1164 01c12c2f1973
(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
Makefile
--- a/Makefile	Tue Jan 25 00:13:48 2005 +0000
+++ b/Makefile	Tue Jan 25 15:35:11 2005 +0000
@@ -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 @@
 
 $(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 @@
 
 %.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 @@
 %.o: %.cpp  $(MAKE_CONFIG) endian.h table/strings.h
 	@echo '===> Compiling $<'
 	@$(CXX_BUILD) $< -o $@
+
+
+info:
+	@echo 'CFLAGS  = $(CFLAGS)'
+	@echo 'LDFLAGS = $(LDFLAGS)'
+	@echo 'LIBS    = $(LIBS)'