blob: 68160dcba92661de544a126d561e7c84be70a2a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
--- a/src/Makefile.old 2017-06-06 13:30:39.005626983 +0200
+++ b/src/Makefile 2017-06-06 13:31:09.180881871 +0200
@@ -239,15 +239,7 @@
# compile FreeDoko
$(PROGRAM) : show_settings objects $(DIRECTORIES)
@echo 'compiling $(PROGRAM)...'
-# Gentoo users do want to see the real compile line.
-# So remove the next five lines (the echo lines)
-# and remove the '@' in the line after.
- @echo '$(CXX) $$(OBJECTS)'
- @echo ' $(INCLUDE_ALL)'
- @echo ' $(LIBS_ALL)'
- @echo ' $(CXXFLAGS)'
- @echo ' -o $@'
- @$(CXX) \
+ $(CXX) \
$(OBJECTS_ALL:%.o=$(FREEDOKO_WORKING_DIRECTORY)/%.o) \
$(INCLUDE_ALL) \
$(LIBS_ALL) \
--- a/src/Makefile.rules.old 2017-06-06 13:30:27.071526137 +0200
+++ b/src/Makefile.rules 2017-06-06 13:31:17.829954904 +0200
@@ -80,10 +80,7 @@
$(DEPTH)/Makefile.modules \
$(DEPTH)/Makefile.local \
$(DEPTH)/Makefile.os
-# Gentoo users do want to see the real compile line.
-# So remove the next line and remove the '@' in the line after.
- @echo $(CXX) -c $(SUBDIR)/$<
- @$(CXX) $(INCLUDE) $(CPPFLAGS) $(CXXFLAGS) $(DEPGEN_FLAGS) -o $@ -c $<
+ $(CXX) $(INCLUDE) $(CPPFLAGS) $(CXXFLAGS) $(DEPGEN_FLAGS) -o $@ -c $<
-include $(OBJECTS:%.o=$(TARGET_DIR_LOCAL)%.d)
|