Subversion Repositories HomeAutomation

Rev

Rev 1592 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1592 Rev 1652
Line 34... Line 34...
34
 
34
 
35
# The command to remove a file.
35
# The command to remove a file.
36
RM = /usr/bin/cmake -E remove -f
36
RM = /usr/bin/cmake -E remove -f
37
 
37
 
38
# The top-level source directory on which CMake was run.
38
# The top-level source directory on which CMake was run.
39
CMAKE_SOURCE_DIR = /home/migan/HomeAutomation/PcSoftware/Atom1_5
39
CMAKE_SOURCE_DIR = /home/migan/HomeAutomation/PcSoftware/Atom1.5
40
 
40
 
41
# The top-level build directory on which CMake was run.
41
# The top-level build directory on which CMake was run.
42
CMAKE_BINARY_DIR = /home/migan/HomeAutomation/PcSoftware/Atom1_5
42
CMAKE_BINARY_DIR = /home/migan/HomeAutomation/PcSoftware/Atom1.5
43
 
43
 
44
#=============================================================================
44
#=============================================================================
45
# Targets provided globally by CMake.
45
# Targets provided globally by CMake.
46
 
46
 
47
# Special rule for the target edit_cache
47
# Special rule for the target edit_cache
Line 51... Line 51...
51
.PHONY : edit_cache
51
.PHONY : edit_cache
52
 
52
 
53
# Special rule for the target edit_cache
53
# Special rule for the target edit_cache
54
edit_cache/fast: edit_cache
54
edit_cache/fast: edit_cache
55
.PHONY : edit_cache/fast
55
.PHONY : edit_cache/fast
-
 
56
 
-
 
57
# Special rule for the target install
-
 
58
install: preinstall
-
 
59
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
-
 
60
	/usr/bin/cmake -P cmake_install.cmake
-
 
61
.PHONY : install
-
 
62
 
-
 
63
# Special rule for the target install
-
 
64
install/fast: preinstall/fast
-
 
65
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
-
 
66
	/usr/bin/cmake -P cmake_install.cmake
-
 
67
.PHONY : install/fast
-
 
68
 
-
 
69
# Special rule for the target install/local
-
 
70
install/local: preinstall
-
 
71
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
-
 
72
	/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
-
 
73
.PHONY : install/local
-
 
74
 
-
 
75
# Special rule for the target install/local
-
 
76
install/local/fast: install/local
-
 
77
.PHONY : install/local/fast
-
 
78
 
-
 
79
# Special rule for the target install/strip
-
 
80
install/strip: preinstall
-
 
81
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
-
 
82
	/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
-
 
83
.PHONY : install/strip
-
 
84
 
-
 
85
# Special rule for the target install/strip
-
 
86
install/strip/fast: install/strip
-
 
87
.PHONY : install/strip/fast
-
 
88
 
-
 
89
# Special rule for the target list_install_components
-
 
90
list_install_components:
-
 
91
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
-
 
92
.PHONY : list_install_components
-
 
93
 
-
 
94
# Special rule for the target list_install_components
-
 
95
list_install_components/fast: list_install_components
-
 
96
.PHONY : list_install_components/fast
-
 
97
 
-
 
98
# Special rule for the target package
-
 
99
package: preinstall
-
 
100
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..."
-
 
101
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && /usr/bin/cpack --config ./CPackConfig.cmake
-
 
102
.PHONY : package
-
 
103
 
-
 
104
# Special rule for the target package
-
 
105
package/fast: package
-
 
106
.PHONY : package/fast
-
 
107
 
-
 
108
# Special rule for the target package_source
-
 
109
package_source:
-
 
110
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..."
-
 
111
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/migan/HomeAutomation/PcSoftware/Atom1.5/CPackSourceConfig.cmake
-
 
112
.PHONY : package_source
-
 
113
 
-
 
114
# Special rule for the target package_source
-
 
115
package_source/fast: package_source
-
 
116
.PHONY : package_source/fast
56
 
117
 
57
# Special rule for the target rebuild_cache
118
# Special rule for the target rebuild_cache
58
rebuild_cache:
119
rebuild_cache:
59
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
120
	@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
60
	/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
121
	/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
Line 64... Line 125...
64
rebuild_cache/fast: rebuild_cache
125
rebuild_cache/fast: rebuild_cache
65
.PHONY : rebuild_cache/fast
126
.PHONY : rebuild_cache/fast
66
 
127
 
67
# The main all target
128
# The main all target
68
all: cmake_check_build_system
129
all: cmake_check_build_system
69
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(CMAKE_COMMAND) -E cmake_progress_start /home/migan/HomeAutomation/PcSoftware/Atom1_5/CMakeFiles /home/migan/HomeAutomation/PcSoftware/Atom1_5/src/net/CMakeFiles/progress.marks
130
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(CMAKE_COMMAND) -E cmake_progress_start /home/migan/HomeAutomation/PcSoftware/Atom1.5/CMakeFiles /home/migan/HomeAutomation/PcSoftware/Atom1.5/src/net/CMakeFiles/progress.marks
70
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/all
131
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/all
71
	$(CMAKE_COMMAND) -E cmake_progress_start /home/migan/HomeAutomation/PcSoftware/Atom1_5/CMakeFiles 0
132
	$(CMAKE_COMMAND) -E cmake_progress_start /home/migan/HomeAutomation/PcSoftware/Atom1.5/CMakeFiles 0
72
.PHONY : all
133
.PHONY : all
73
 
134
 
74
# The main clean target
135
# The main clean target
75
clean:
136
clean:
76
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/clean
137
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/clean
77
.PHONY : clean
138
.PHONY : clean
78
 
139
 
79
# The main clean target
140
# The main clean target
80
clean/fast: clean
141
clean/fast: clean
81
.PHONY : clean/fast
142
.PHONY : clean/fast
82
 
143
 
83
# Prepare targets for installation.
144
# Prepare targets for installation.
84
preinstall: all
145
preinstall: all
85
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/preinstall
146
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/preinstall
86
.PHONY : preinstall
147
.PHONY : preinstall
87
 
148
 
88
# Prepare targets for installation.
149
# Prepare targets for installation.
89
preinstall/fast:
150
preinstall/fast:
90
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/preinstall
151
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(MAKE) -f CMakeFiles/Makefile2 src/net/preinstall
91
.PHONY : preinstall/fast
152
.PHONY : preinstall/fast
92
 
153
 
93
# clear depends
154
# clear depends
94
depend:
155
depend:
95
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
156
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
96
.PHONY : depend
157
.PHONY : depend
97
 
158
 
98
# Help Target
159
# Help Target
99
help:
160
help:
100
	@echo "The following are some of the valid targets for this Makefile:"
161
	@echo "The following are some of the valid targets for this Makefile:"
101
	@echo "... all (the default if no target is provided)"
162
	@echo "... all (the default if no target is provided)"
102
	@echo "... clean"
163
	@echo "... clean"
103
	@echo "... depend"
164
	@echo "... depend"
104
	@echo "... edit_cache"
165
	@echo "... edit_cache"
-
 
166
	@echo "... install"
-
 
167
	@echo "... install/local"
-
 
168
	@echo "... install/strip"
-
 
169
	@echo "... list_install_components"
-
 
170
	@echo "... package"
-
 
171
	@echo "... package_source"
105
	@echo "... rebuild_cache"
172
	@echo "... rebuild_cache"
106
.PHONY : help
173
.PHONY : help
107
 
174
 
108
 
175
 
109
 
176
 
Line 112... Line 179...
112
 
179
 
113
# Special rule to run CMake to check the build system integrity.
180
# Special rule to run CMake to check the build system integrity.
114
# No rule that depends on this can have commands that come from listfiles
181
# No rule that depends on this can have commands that come from listfiles
115
# because they might be regenerated.
182
# because they might be regenerated.
116
cmake_check_build_system:
183
cmake_check_build_system:
117
	cd /home/migan/HomeAutomation/PcSoftware/Atom1_5 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
184
	cd /home/migan/HomeAutomation/PcSoftware/Atom1.5 && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
118
.PHONY : cmake_check_build_system
185
.PHONY : cmake_check_build_system
119
 
186