1 name-to-bin
= $(patsubst %,$(TARGET_BIN_DIR
)/%$(TARGET_EXEEXT
),$(1))
17 test_bestcruisetrack \
20 test_cruiseefficiency \
27 HARNESS_PROGRAMS
= $(TESTFAST
) $(TESTSLOW
)
29 build-harness
: $(call name-to-bin
,$(HARNESS_PROGRAMS
))
31 testslow
: $(call name-to-bin
,$(TESTSLOW
))
32 $(Q
)perl
$(TEST_SRC_DIR
)/testall.pl
$(TESTSLOW
)
34 testfast
: $(call name-to-bin
,$(TESTFAST
))
35 $(Q
)perl
$(TEST_SRC_DIR
)/testall.pl
$(TESTFAST
)
37 TEST1_LDADD
= $(HARNESS_LIBS
) \
55 define link-harness-program
57 $(SRC
)/Engine
/Trace
/Point.
cpp \
58 $(SRC
)/Engine
/Trace
/Trace.
cpp \
59 $(SRC
)/Engine
/Trace
/Vector.
cpp \
60 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
61 $(SRC
)/Engine
/Util
/Gradient.
cpp \
62 $(SRC
)/NMEA
/FlyingState.
cpp \
63 $(SRC
)/Atmosphere
/AirDensity.
cpp \
64 $(SRC
)/Atmosphere
/Pressure.
cpp \
65 $(SRC
)/Formatter
/AirspaceFormatter.
cpp \
66 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
67 $(TEST_SRC_DIR
)/$(1).
cpp
68 $(1)_LDADD
= $(TEST1_LDADD
)
69 $(1)_LDLIBS
= $(TEST1_LDLIBS
)
70 $(call link-program
,$(1),$(1))
73 $(foreach name
,$(HARNESS_PROGRAMS
),$(eval
$(call link-harness-program
,$(name
))))
81 TestOverwritingRingBuffer \
82 TestDateTime TestRoughTime \
84 TestAngle TestUnits TestEarth TestSunEphemeris \
85 TestValidity TestUTM TestProfile \
86 TestRadixTree TestGeoBounds TestGeoClip \
87 TestLogger TestDriver TestClimbAvCalc \
88 TestWaypointReader TestThermalBase \
90 TestColorRamp TestGeoPoint TestDiffFilter \
91 TestFileUtil TestPolars TestCSVLine TestGlidePolar \
92 test_replay_task TestProjection TestFlatPoint TestFlatLine TestFlatGeoPoint \
93 TestMacCready TestOrderedTask TestAATPoint \
107 TestGeoPointFormatter \
108 TestHexColorFormatter \
109 TestByteSizeFormatter \
111 TestIGCFilenameFormatter \
114 TESTS
= $(call name-to-bin
,$(TEST_NAMES
))
117 $(SRC
)/Util
/CRC.
cpp \
118 $(TEST_SRC_DIR
)/tap.c \
119 $(TEST_SRC_DIR
)/TestCRC.
cpp
120 $(eval
$(call link-program
,TestCRC
,TEST_CRC
))
122 TEST_OVERWRITING_RING_BUFFER_SOURCES
= \
123 $(TEST_SRC_DIR
)/tap.c \
124 $(TEST_SRC_DIR
)/TestOverwritingRingBuffer.
cpp
125 TEST_OVERWRITING_RING_BUFFER_DEPENDS
= MATH
126 $(eval
$(call link-program
,TestOverwritingRingBuffer
,TEST_OVERWRITING_RING_BUFFER
))
128 TEST_IGC_PARSER_SOURCES
= \
129 $(SRC
)/IGC
/IGCParser.
cpp \
130 $(TEST_SRC_DIR
)/tap.c \
131 $(TEST_SRC_DIR
)/TestIGCParser.
cpp
132 TEST_IGC_PARSER_DEPENDS
= MATH UTIL
133 $(eval
$(call link-program
,TestIGCParser
,TEST_IGC_PARSER
))
135 TEST_BYTE_ORDER_SOURCES
= \
136 $(TEST_SRC_DIR
)/tap.c \
137 $(TEST_SRC_DIR
)/TestByteOrder.
cpp
138 $(eval
$(call link-program
,TestByteOrder
,TEST_BYTE_ORDER
))
140 TEST_BYTE_ORDER2_SOURCES
= \
141 $(TEST_SRC_DIR
)/tap.c \
142 $(TEST_SRC_DIR
)/TestByteOrder2.
cpp
143 $(eval
$(call link-program
,TestByteOrder2
,TEST_BYTE_ORDER2
))
145 TEST_METAR_PARSER_SOURCES
= \
146 $(SRC
)/Weather
/METARParser.
cpp \
147 $(SRC
)/Units
/Descriptor.
cpp \
148 $(SRC
)/Units
/System.
cpp \
149 $(SRC
)/Atmosphere
/Pressure.
cpp \
150 $(TEST_SRC_DIR
)/tap.c \
151 $(TEST_SRC_DIR
)/TestMETARParser.
cpp
152 TEST_METAR_PARSER_DEPENDS
= MATH UTIL
153 $(eval
$(call link-program
,TestMETARParser
,TEST_METAR_PARSER
))
155 TEST_AIRSPACE_PARSER_SOURCES
= \
156 $(SRC
)/Airspace
/AirspaceParser.
cpp \
157 $(SRC
)/Units
/Descriptor.
cpp \
158 $(SRC
)/Units
/System.
cpp \
159 $(SRC
)/Operation
/Operation.
cpp \
160 $(SRC
)/Atmosphere
/Pressure.
cpp \
161 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
162 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
163 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
164 $(TEST_SRC_DIR
)/tap.c \
165 $(TEST_SRC_DIR
)/TestAirspaceParser.
cpp
166 TEST_AIRSPACE_PARSER_LDADD
= $(FAKE_LIBS
)
167 TEST_AIRSPACE_PARSER_DEPENDS
= IO OS AIRSPACE ZZIP GEO MATH UTIL
168 $(eval
$(call link-program
,TestAirspaceParser
,TEST_AIRSPACE_PARSER
))
170 TEST_DATE_TIME_SOURCES
= \
171 $(TEST_SRC_DIR
)/tap.c \
172 $(TEST_SRC_DIR
)/TestDateTime.
cpp
173 TEST_DATE_TIME_DEPENDS
= MATH TIME
174 $(eval
$(call link-program
,TestDateTime
,TEST_DATE_TIME
))
176 TEST_ROUGH_TIME_SOURCES
= \
177 $(TEST_SRC_DIR
)/tap.c \
178 $(TEST_SRC_DIR
)/TestRoughTime.
cpp
179 TEST_ROUGH_TIME_DEPENDS
= MATH TIME
180 $(eval
$(call link-program
,TestRoughTime
,TEST_ROUGH_TIME
))
182 TEST_PROFILE_SOURCES
= \
183 $(SRC
)/LocalPath.
cpp \
184 $(SRC
)/Profile
/Profile.
cpp \
185 $(SRC
)/Profile
/ProfileMap.
cpp \
186 $(TEST_SRC_DIR
)/tap.c \
187 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
188 $(TEST_SRC_DIR
)/TestProfile.
cpp
189 TEST_PROFILE_DEPENDS
= MATH IO OS UTIL
190 $(eval
$(call link-program
,TestProfile
,TEST_PROFILE
))
192 TEST_MAC_CREADY_SOURCES
= \
193 $(TEST_SRC_DIR
)/tap.c \
194 $(TEST_SRC_DIR
)/TestMacCready.
cpp
195 TEST_MAC_CREADY_OBJS
= $(call SRC_TO_OBJ
,$(TEST_MAC_CREADY_SOURCES
))
196 TEST_MAC_CREADY_DEPENDS
= GLIDE GEO MATH UTIL
197 $(eval
$(call link-program
,TestMacCready
,TEST_MAC_CREADY
))
199 TEST_ORDERED_TASK_SOURCES
= \
200 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
201 $(SRC
)/Engine
/Util
/Gradient.
cpp \
202 $(SRC
)/NMEA
/FlyingState.
cpp \
203 $(TEST_SRC_DIR
)/tap.c \
204 $(TEST_SRC_DIR
)/TestOrderedTask.
cpp
205 TEST_ORDERED_TASK_OBJS
= $(call SRC_TO_OBJ
,$(TEST_ORDERED_TASK_SOURCES
))
206 TEST_ORDERED_TASK_DEPENDS
= TASK ROUTE GLIDE WAYPOINT GEO MATH UTIL
207 $(eval
$(call link-program
,TestOrderedTask
,TEST_ORDERED_TASK
))
209 TEST_AAT_POINT_SOURCES
= \
210 $(SRC
)/Engine
/Util
/Gradient.
cpp \
211 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
212 $(TEST_SRC_DIR
)/tap.c \
213 $(TEST_SRC_DIR
)/TestAATPoint.
cpp
214 TEST_AAT_POINT_OBJS
= $(call SRC_TO_OBJ
,$(TEST_AAT_POINT_SOURCES
))
215 TEST_AAT_POINT_DEPENDS
= TASK ROUTE GLIDE WAYPOINT GEO MATH UTIL
216 $(eval
$(call link-program
,TestAATPoint
,TEST_AAT_POINT
))
218 TEST_PLANES_SOURCES
= \
219 $(SRC
)/Polar
/Parser.
cpp \
220 $(SRC
)/Plane
/PlaneFileGlue.
cpp \
221 $(SRC
)/Units
/Descriptor.
cpp \
222 $(SRC
)/Units
/System.
cpp \
223 $(TEST_SRC_DIR
)/tap.c \
224 $(TEST_SRC_DIR
)/TestPlanes.
cpp
225 TEST_PLANES_DEPENDS
= IO OS MATH UTIL
226 $(eval
$(call link-program
,TestPlanes
,TEST_PLANES
))
228 TEST_ZEROFINDER_SOURCES
= \
229 $(TEST_SRC_DIR
)/tap.c \
230 $(TEST_SRC_DIR
)/TestZeroFinder.
cpp
231 TEST_ZEROFINDER_DEPENDS
= IO OS MATH
232 $(eval
$(call link-program
,TestZeroFinder
,TEST_ZEROFINDER
))
234 TEST_TASKPOINT_SOURCES
= \
235 $(TEST_SRC_DIR
)/tap.c \
236 $(TEST_SRC_DIR
)/TestTaskPoint.
cpp
237 TEST_TASKPOINT_DEPENDS
= IO OS TASK GEO MATH
238 $(eval
$(call link-program
,TestTaskPoint
,TEST_TASKPOINT
))
240 TEST_TASKWAYPOINT_SOURCES
= \
241 $(ENGINE_SRC_DIR
)/Waypoint
/Waypoint.
cpp \
242 $(TEST_SRC_DIR
)/tap.c \
243 $(TEST_SRC_DIR
)/TestTaskWaypoint.
cpp
244 TEST_TASKWAYPOINT_DEPENDS
= IO OS TASK GEO MATH UTIL
245 $(eval
$(call link-program
,TestTaskWaypoint
,TEST_TASKWAYPOINT
))
247 TEST_TEAM_CODE_SOURCES
= \
248 $(SRC
)/TeamCode.
cpp \
249 $(TEST_SRC_DIR
)/tap.c \
250 $(TEST_SRC_DIR
)/TestTeamCode.
cpp
251 TEST_TEAM_CODE_DEPENDS
= GEO MATH UTIL
252 $(eval
$(call link-program
,TestTeamCode
,TEST_TEAM_CODE
))
254 TEST_TROUTE_SOURCES
= \
255 $(SRC
)/XML
/Node.
cpp \
256 $(SRC
)/Operation
/Operation.
cpp \
257 $(TEST_SRC_DIR
)/Printing.
cpp \
258 $(TEST_SRC_DIR
)/tap.c \
259 $(TEST_SRC_DIR
)/test_troute.
cpp
260 TEST_TROUTE_DEPENDS
= TERRAIN IO ZZIP OS ROUTE GLIDE GEO MATH UTIL
261 $(eval
$(call link-program
,test_troute
,TEST_TROUTE
))
263 TEST_REACH_SOURCES
= \
264 $(SRC
)/XML
/Node.
cpp \
265 $(SRC
)/Operation
/Operation.
cpp \
266 $(TEST_SRC_DIR
)/Printing.
cpp \
267 $(TEST_SRC_DIR
)/tap.c \
268 $(TEST_SRC_DIR
)/test_reach.
cpp
269 TEST_REACH_DEPENDS
= TERRAIN IO ZZIP OS ROUTE GLIDE GEO MATH UTIL
270 $(eval
$(call link-program
,test_reach
,TEST_REACH
))
272 TEST_ROUTE_SOURCES
= \
273 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
274 $(SRC
)/Engine
/Util
/Gradient.
cpp \
275 $(SRC
)/NMEA
/FlyingState.
cpp \
276 $(SRC
)/XML
/Node.
cpp \
277 $(SRC
)/Formatter
/AirspaceFormatter.
cpp \
278 $(SRC
)/Operation
/Operation.
cpp \
279 $(SRC
)/Atmosphere
/Pressure.
cpp \
280 $(TEST_SRC_DIR
)/Printing.
cpp \
281 $(TEST_SRC_DIR
)/AirspacePrinting.
cpp \
282 $(TEST_SRC_DIR
)/harness_airspace.
cpp \
283 $(TEST_SRC_DIR
)/tap.c \
284 $(TEST_SRC_DIR
)/test_route.
cpp
285 TEST_ROUTE_DEPENDS
= TERRAIN IO ZZIP OS ROUTE AIRSPACE GLIDE GEO MATH UTIL
286 $(eval
$(call link-program
,test_route
,TEST_ROUTE
))
288 TEST_REPLAY_TASK_SOURCES
= \
289 $(SRC
)/NMEA
/Info.
cpp \
290 $(SRC
)/NMEA
/ExternalSettings.
cpp \
291 $(SRC
)/NMEA
/Attitude.
cpp \
292 $(SRC
)/NMEA
/Acceleration.
cpp \
293 $(SRC
)/NMEA
/SwitchState.
cpp \
294 $(SRC
)/Computer
/FlyingComputer.
cpp \
295 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
296 $(SRC
)/Engine
/Util
/Gradient.
cpp \
297 $(SRC
)/NMEA
/FlyingState.
cpp \
298 $(SRC
)/Task
/Serialiser.
cpp \
299 $(SRC
)/Task
/Deserialiser.
cpp \
300 $(SRC
)/XML
/Node.
cpp \
301 $(SRC
)/XML
/Parser.
cpp \
302 $(SRC
)/XML
/Writer.
cpp \
303 $(SRC
)/XML
/DataNode.
cpp \
304 $(SRC
)/XML
/DataNodeXML.
cpp \
305 $(SRC
)/Atmosphere
/AirDensity.
cpp \
306 $(SRC
)/Atmosphere
/Pressure.
cpp \
307 $(SRC
)/IGC
/IGCParser.
cpp \
308 $(SRC
)/Replay
/IgcReplay.
cpp \
309 $(SRC
)/Replay
/TaskAutoPilot.
cpp \
310 $(TEST_SRC_DIR
)/tap.c \
311 $(TEST_SRC_DIR
)/Printing.
cpp \
312 $(TEST_SRC_DIR
)/TaskPrinting.
cpp \
313 $(TEST_SRC_DIR
)/TaskEventsPrint.
cpp \
314 $(TEST_SRC_DIR
)/harness_task.
cpp \
315 $(TEST_SRC_DIR
)/test_debug.
cpp \
316 $(TEST_SRC_DIR
)/test_replay_task.
cpp
317 TEST_REPLAY_TASK_DEPENDS
= TASK ROUTE WAYPOINT GLIDE GEO MATH IO OS UTIL TIME
318 $(eval
$(call link-program
,test_replay_task
,TEST_REPLAY_TASK
))
320 TEST_MATH_TABLES_SOURCES
= \
321 $(TEST_SRC_DIR
)/tap.c \
322 $(TEST_SRC_DIR
)/TestMathTables.
cpp
323 TEST_MATH_TABLES_DEPENDS
= MATH
324 $(eval
$(call link-program
,TestMathTables
,TEST_MATH_TABLES
))
326 TEST_ANGLE_SOURCES
= \
327 $(TEST_SRC_DIR
)/tap.c \
328 $(TEST_SRC_DIR
)/TestAngle.
cpp
329 TEST_ANGLE_DEPENDS
= MATH
330 $(eval
$(call link-program
,TestAngle
,TEST_ANGLE
))
332 TEST_CSV_LINE_SOURCES
= \
333 $(SRC
)/IO
/CSVLine.
cpp \
334 $(TEST_SRC_DIR
)/tap.c \
335 $(TEST_SRC_DIR
)/TestCSVLine.
cpp
336 TEST_CSV_LINE_DEPENDS
= MATH
337 $(eval
$(call link-program
,TestCSVLine
,TEST_CSV_LINE
))
339 TEST_GEO_BOUNDS_SOURCES
= \
340 $(TEST_SRC_DIR
)/tap.c \
341 $(TEST_SRC_DIR
)/TestGeoBounds.
cpp
342 TEST_GEO_BOUNDS_DEPENDS
= GEO MATH
343 $(eval
$(call link-program
,TestGeoBounds
,TEST_GEO_BOUNDS
))
345 TEST_FLARM_NET_SOURCES
= \
346 $(SRC
)/FLARM
/FlarmNetReader.
cpp \
347 $(SRC
)/FLARM
/FlarmId.
cpp \
348 $(SRC
)/FLARM
/FlarmNetRecord.
cpp \
349 $(SRC
)/FLARM
/FlarmNetDatabase.
cpp \
350 $(TEST_SRC_DIR
)/tap.c \
351 $(TEST_SRC_DIR
)/TestFlarmNet.
cpp
352 TEST_FLARM_NET_DEPENDS
= IO OS MATH UTIL
353 $(eval
$(call link-program
,TestFlarmNet
,TEST_FLARM_NET
))
355 TEST_GEO_CLIP_SOURCES
= \
356 $(TEST_SRC_DIR
)/tap.c \
357 $(TEST_SRC_DIR
)/TestGeoClip.
cpp
358 TEST_GEO_CLIP_DEPENDS
= GEO MATH
359 $(eval
$(call link-program
,TestGeoClip
,TEST_GEO_CLIP
))
361 TEST_CLIMB_AV_CALC_SOURCES
= \
362 $(SRC
)/Computer
/ClimbAverageCalculator.
cpp \
363 $(TEST_SRC_DIR
)/tap.c \
364 $(TEST_SRC_DIR
)/TestClimbAvCalc.
cpp
365 TEST_CLIMB_AV_CALC_DEPENDS
= MATH
366 $(eval
$(call link-program
,TestClimbAvCalc
,TEST_CLIMB_AV_CALC
))
368 TEST_PROJECTION_SOURCES
= \
369 $(SRC
)/Projection
/Projection.
cpp \
370 $(TEST_SRC_DIR
)/tap.c \
371 $(TEST_SRC_DIR
)/TestProjection.
cpp
372 TEST_PROJECTION_DEPENDS
= MATH
373 TEST_PROJECTION_CPPFLAGS
= $(SCREEN_CPPFLAGS
)
374 $(eval
$(call link-program
,TestProjection
,TEST_PROJECTION
))
376 TEST_UNITS_SOURCES
= \
377 $(SRC
)/Units
/Units.
cpp \
378 $(SRC
)/Units
/Settings.
cpp \
379 $(SRC
)/Units
/Descriptor.
cpp \
380 $(SRC
)/Units
/System.
cpp \
381 $(TEST_SRC_DIR
)/tap.c \
382 $(TEST_SRC_DIR
)/TestUnits.
cpp
383 TEST_UNITS_DEPENDS
= MATH
384 $(eval
$(call link-program
,TestUnits
,TEST_UNITS
))
386 TEST_UNITS_FORMATTER_SOURCES
= \
387 $(SRC
)/Formatter
/Units.
cpp \
388 $(SRC
)/Units
/Descriptor.
cpp \
389 $(SRC
)/Units
/System.
cpp \
390 $(TEST_SRC_DIR
)/tap.c \
391 $(TEST_SRC_DIR
)/TestUnitsFormatter.
cpp
392 TEST_UNITS_FORMATTER_DEPENDS
= MATH UTIL
393 $(eval
$(call link-program
,TestUnitsFormatter
,TEST_UNITS_FORMATTER
))
395 TEST_GEO_POINT_FORMATTER_SOURCES
= \
396 $(SRC
)/Formatter
/GeoPointFormatter.
cpp \
397 $(TEST_SRC_DIR
)/tap.c \
398 $(TEST_SRC_DIR
)/TestGeoPointFormatter.
cpp
399 TEST_GEO_POINT_FORMATTER_DEPENDS
= GEO MATH UTIL
400 $(eval
$(call link-program
,TestGeoPointFormatter
,TEST_GEO_POINT_FORMATTER
))
402 TEST_HEX_COLOR_FORMATTER_SOURCES
= \
403 $(SRC
)/Formatter
/HexColor.
cpp \
404 $(TEST_SRC_DIR
)/tap.c \
405 $(TEST_SRC_DIR
)/TestHexColorFormatter.
cpp
406 TEST_HEX_COLOR_FORMATTER_DEPENDS
= MATH SCREEN EVENT UTIL
407 $(eval
$(call link-program
,TestHexColorFormatter
,TEST_HEX_COLOR_FORMATTER
))
409 TEST_BYTE_SIZE_FORMATTER_SOURCES
= \
410 $(SRC
)/Formatter
/ByteSizeFormatter.
cpp \
411 $(TEST_SRC_DIR
)/tap.c \
412 $(TEST_SRC_DIR
)/TestByteSizeFormatter.
cpp
413 TEST_BYTE_SIZE_FORMATTER_DEPENDS
= MATH UTIL
414 $(eval
$(call link-program
,TestByteSizeFormatter
,TEST_BYTE_SIZE_FORMATTER
))
416 TEST_TIME_FORMATTER_SOURCES
= \
417 $(SRC
)/Formatter
/TimeFormatter.
cpp \
418 $(TEST_SRC_DIR
)/tap.c \
419 $(TEST_SRC_DIR
)/TestTimeFormatter.
cpp
420 TEST_TIME_FORMATTER_DEPENDS
= MATH UTIL TIME
421 $(eval
$(call link-program
,TestTimeFormatter
,TEST_TIME_FORMATTER
))
423 TEST_IGC_FILENAME_FORMATTER_SOURCES
= \
424 $(SRC
)/Formatter
/IGCFilenameFormatter.
cpp \
425 $(TEST_SRC_DIR
)/tap.c \
426 $(TEST_SRC_DIR
)/TestIGCFilenameFormatter.
cpp
427 TEST_IGC_FILENAME_FORMATTER_DEPENDS
= MATH UTIL TIME
428 $(eval
$(call link-program
,TestIGCFilenameFormatter
,TEST_IGC_FILENAME_FORMATTER
))
430 TEST_STRINGS_SOURCES
= \
431 $(TEST_SRC_DIR
)/tap.c \
432 $(TEST_SRC_DIR
)/TestStrings.
cpp
433 TEST_STRINGS_DEPENDS
= UTIL
434 $(eval
$(call link-program
,TestStrings
,TEST_STRINGS
))
436 TEST_POLARS_SOURCES
= \
437 $(SRC
)/Profile
/ProfileKeys.
cpp \
438 $(SRC
)/Units
/Descriptor.
cpp \
439 $(SRC
)/Units
/System.
cpp \
440 $(SRC
)/Polar
/Shape.
cpp \
441 $(SRC
)/Polar
/Polar.
cpp \
442 $(SRC
)/Polar
/Parser.
cpp \
443 $(ENGINE_SRC_DIR
)/GlideSolvers
/PolarCoefficients.
cpp \
444 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlidePolar.
cpp \
445 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlideResult.
cpp \
446 $(SRC
)/Polar
/PolarFileGlue.
cpp \
447 $(SRC
)/Polar
/PolarStore.
cpp \
448 $(TEST_SRC_DIR
)/tap.c \
449 $(TEST_SRC_DIR
)/TestPolars.
cpp
450 TEST_POLARS_DEPENDS
= IO OS MATH UTIL
451 $(eval
$(call link-program
,TestPolars
,TEST_POLARS
))
453 TEST_GLIDE_POLAR_SOURCES
= \
454 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlidePolar.
cpp \
455 $(ENGINE_SRC_DIR
)/GlideSolvers
/PolarCoefficients.
cpp \
456 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlideResult.
cpp \
457 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlideState.
cpp \
458 $(ENGINE_SRC_DIR
)/GlideSolvers
/MacCready.
cpp \
459 $(SRC
)/Units
/Descriptor.
cpp \
460 $(SRC
)/Units
/System.
cpp \
461 $(TEST_SRC_DIR
)/tap.c \
462 $(TEST_SRC_DIR
)/TestGlidePolar.
cpp
463 TEST_GLIDE_POLAR_DEPENDS
= GEO MATH IO
464 $(eval
$(call link-program
,TestGlidePolar
,TEST_GLIDE_POLAR
))
466 TEST_FILE_UTIL_SOURCES
= \
467 $(SRC
)/OS
/FileUtil.
cpp \
468 $(TEST_SRC_DIR
)/tap.c \
469 $(TEST_SRC_DIR
)/TestFileUtil.
cpp
470 TEST_FILE_UTIL_DEPENDS
= UTIL
471 $(eval
$(call link-program
,TestFileUtil
,TEST_FILE_UTIL
))
473 TEST_GEO_POINT_SOURCES
= \
474 $(TEST_SRC_DIR
)/tap.c \
475 $(TEST_SRC_DIR
)/TestGeoPoint.
cpp
476 TEST_GEO_POINT_DEPENDS
= GEO MATH
477 $(eval
$(call link-program
,TestGeoPoint
,TEST_GEO_POINT
))
479 TEST_DIFF_FILTER_SOURCES
= \
480 $(TEST_SRC_DIR
)/tap.c \
481 $(TEST_SRC_DIR
)/TestDiffFilter.
cpp
482 TEST_DIFF_FILTER_DEPENDS
= MATH
483 $(eval
$(call link-program
,TestDiffFilter
,TEST_DIFF_FILTER
))
485 TEST_FLAT_POINT_SOURCES
= \
486 $(TEST_SRC_DIR
)/tap.c \
487 $(TEST_SRC_DIR
)/TestFlatPoint.
cpp
488 TEST_FLAT_POINT_DEPENDS
= GEO MATH
489 $(eval
$(call link-program
,TestFlatPoint
,TEST_FLAT_POINT
))
491 TEST_FLAT_GEO_POINT_SOURCES
= \
492 $(TEST_SRC_DIR
)/tap.c \
493 $(TEST_SRC_DIR
)/TestFlatGeoPoint.
cpp
494 TEST_FLAT_GEO_POINT_DEPENDS
= GEO MATH
495 $(eval
$(call link-program
,TestFlatGeoPoint
,TEST_FLAT_GEO_POINT
))
497 TEST_FLAT_LINE_SOURCES
= \
498 $(TEST_SRC_DIR
)/tap.c \
499 $(TEST_SRC_DIR
)/TestFlatLine.
cpp
500 TEST_FLAT_LINE_DEPENDS
= GEO MATH
501 $(eval
$(call link-program
,TestFlatLine
,TEST_FLAT_LINE
))
503 TEST_THERMALBASE_SOURCES
= \
504 $(SRC
)/Computer
/ThermalBase.
cpp \
505 $(TEST_SRC_DIR
)/tap.c \
506 $(TEST_SRC_DIR
)/TestThermalBase.
cpp \
507 $(TEST_SRC_DIR
)/FakeTerrain.
cpp
508 TEST_THERMALBASE_DEPENDS
= GEO MATH THREAD
509 $(eval
$(call link-program
,TestThermalBase
,TEST_THERMALBASE
))
511 TEST_EARTH_SOURCES
= \
512 $(TEST_SRC_DIR
)/tap.c \
513 $(TEST_SRC_DIR
)/TestEarth.
cpp
514 TEST_EARTH_DEPENDS
= GEO MATH
515 $(eval
$(call link-program
,TestEarth
,TEST_EARTH
))
517 TEST_COLOR_RAMP_SOURCES
= \
518 $(SRC
)/Screen
/Ramp.
cpp \
519 $(TEST_SRC_DIR
)/tap.c \
520 $(TEST_SRC_DIR
)/TestColorRamp.
cpp
521 TEST_COLOR_RAMP_CPPFLAGS
= $(SCREEN_CPPFLAGS
)
522 $(eval
$(call link-program
,TestColorRamp
,TEST_COLOR_RAMP
))
524 TEST_SUN_EPHEMERIS_SOURCES
= \
525 $(SRC
)/Math
/SunEphemeris.
cpp \
526 $(TEST_SRC_DIR
)/tap.c \
527 $(TEST_SRC_DIR
)/TestSunEphemeris.
cpp
528 TEST_SUN_EPHEMERIS_DEPENDS
= MATH
529 $(eval
$(call link-program
,TestSunEphemeris
,TEST_SUN_EPHEMERIS
))
532 $(TEST_SRC_DIR
)/tap.c \
533 $(TEST_SRC_DIR
)/TestUTM.
cpp
534 TEST_UTM_DEPENDS
= GEO MATH
535 $(eval
$(call link-program
,TestUTM
,TEST_UTM
))
537 TEST_VALIDITY_SOURCES
= \
538 $(TEST_SRC_DIR
)/tap.c \
539 $(TEST_SRC_DIR
)/TestValidity.
cpp
540 $(eval
$(call link-program
,TestValidity
,TEST_VALIDITY
))
542 TEST_RADIX_TREE_SOURCES
= \
543 $(TEST_SRC_DIR
)/tap.c \
544 $(TEST_SRC_DIR
)/TestRadixTree.
cpp
545 TEST_RADIX_TREE_DEPENDS
= UTIL
546 $(eval
$(call link-program
,TestRadixTree
,TEST_RADIX_TREE
))
548 TEST_LOGGER_SOURCES
= \
549 $(SRC
)/IGC
/IGCFix.
cpp \
550 $(SRC
)/IGC
/IGCWriter.
cpp \
551 $(SRC
)/IGC
/IGCString.
cpp \
552 $(SRC
)/Logger
/LoggerFRecord.
cpp \
553 $(SRC
)/Logger
/GRecord.
cpp \
554 $(SRC
)/Logger
/LoggerEPE.
cpp \
555 $(SRC
)/Logger
/MD5.
cpp \
557 $(SRC
)/Atmosphere
/Pressure.
cpp \
558 $(TEST_SRC_DIR
)/tap.c \
559 $(TEST_SRC_DIR
)/TestLogger.
cpp
560 TEST_LOGGER_DEPENDS
= IO OS GEO MATH UTIL
561 $(eval
$(call link-program
,TestLogger
,TEST_LOGGER
))
563 TEST_DRIVER_SOURCES
= \
564 $(SRC
)/Device
/Port
/NullPort.
cpp \
565 $(SRC
)/Device
/Parser.
cpp \
566 $(SRC
)/Device
/Internal.
cpp \
567 $(SRC
)/Device
/Declaration.
cpp \
568 $(SRC
)/Device
/Driver.
cpp \
569 $(SRC
)/FLARM
/Traffic.
cpp \
570 $(SRC
)/FLARM
/FlarmId.
cpp \
571 $(SRC
)/FLARM
/FlarmCalculations.
cpp \
572 $(SRC
)/NMEA
/Info.
cpp \
573 $(SRC
)/NMEA
/Attitude.
cpp \
574 $(SRC
)/NMEA
/Acceleration.
cpp \
575 $(SRC
)/NMEA
/ExternalSettings.
cpp \
576 $(SRC
)/NMEA
/SwitchState.
cpp \
577 $(SRC
)/NMEA
/InputLine.
cpp \
578 $(SRC
)/NMEA
/Checksum.
cpp \
579 $(SRC
)/FLARM
/List.
cpp \
580 $(SRC
)/Units
/Descriptor.
cpp \
581 $(SRC
)/Units
/System.
cpp \
582 $(SRC
)/IGC
/IGCParser.
cpp \
583 $(SRC
)/Computer
/ClimbAverageCalculator.
cpp \
584 $(SRC
)/Operation
/Operation.
cpp \
585 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
586 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
587 $(SRC
)/Atmosphere
/Pressure.
cpp \
588 $(SRC
)/Atmosphere
/AirDensity.
cpp \
589 $(ENGINE_SRC_DIR
)/Waypoint
/Waypoint.
cpp \
590 $(TEST_SRC_DIR
)/tap.c \
591 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
592 $(TEST_SRC_DIR
)/FakeGeoid.
cpp \
593 $(TEST_SRC_DIR
)/TestDriver.
cpp
594 TEST_DRIVER_DEPENDS
= DRIVER GEO MATH IO OS THREAD UTIL TIME
595 $(eval
$(call link-program
,TestDriver
,TEST_DRIVER
))
597 TEST_WAY_POINT_FILE_SOURCES
= \
598 $(SRC
)/Units
/Descriptor.
cpp \
599 $(SRC
)/Units
/System.
cpp \
600 $(SRC
)/Waypoint
/WaypointFileType.
cpp \
601 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
602 $(SRC
)/Waypoint
/WaypointReader.
cpp \
603 $(SRC
)/Waypoint
/WaypointReaderWinPilot.
cpp \
604 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
605 $(SRC
)/Waypoint
/WaypointReaderZander.
cpp \
606 $(SRC
)/Waypoint
/WaypointReaderFS.
cpp \
607 $(SRC
)/Waypoint
/WaypointReaderOzi.
cpp \
608 $(SRC
)/Waypoint
/WaypointReaderCompeGPS.
cpp \
609 $(SRC
)/Waypoint
/WaypointWriter.
cpp \
610 $(SRC
)/Operation
/Operation.
cpp \
611 $(SRC
)/RadioFrequency.
cpp \
612 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
613 $(TEST_SRC_DIR
)/tap.c \
614 $(TEST_SRC_DIR
)/TestWaypointReader.
cpp
615 TEST_WAY_POINT_FILE_DEPENDS
= WAYPOINT GEO MATH IO UTIL ZZIP OS THREAD
616 $(eval
$(call link-program
,TestWaypointReader
,TEST_WAY_POINT_FILE
))
618 TEST_TRACE_SOURCES
= \
619 $(TEST_SRC_DIR
)/tap.c \
620 $(SRC
)/Engine
/Trace
/Point.
cpp \
621 $(SRC
)/Engine
/Trace
/Trace.
cpp \
622 $(SRC
)/IGC
/IGCParser.
cpp \
623 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
624 $(TEST_SRC_DIR
)/Printing.
cpp \
625 $(TEST_SRC_DIR
)/TestTrace.
cpp
626 TEST_TRACE_DEPENDS
= IO OS GEO MATH UTIL
627 $(eval
$(call link-program
,TestTrace
,TEST_TRACE
))
629 FLIGHT_TABLE_SOURCES
= \
630 $(SRC
)/IGC
/IGCParser.
cpp \
631 $(TEST_SRC_DIR
)/FlightTable.
cpp
632 FLIGHT_TABLE_DEPENDS
= GEO MATH IO OS UTIL
633 $(eval
$(call link-program
,FlightTable
,FLIGHT_TABLE
))
635 build-check
: $(TESTS
)
637 check: $(TESTS
) |
$(OUT
)/test/dirstamp
638 @
$(NQ
)echo
" TEST $(notdir $(patsubst %$(TARGET_EXEEXT),%,$^))"
639 $(Q
)$(PERL
) $(TEST_SRC_DIR
)/testall.pl
$(TESTS
)
641 DEBUG_PROGRAM_NAMES
= \
650 BenchmarkProjection \
651 BenchmarkFAITriangleSector \
652 DumpTextFile DumpTextZip WriteTextFile RunTextWriter \
656 ReadProfileString ReadProfileInt \
657 WriteProfileString WriteProfileInt \
659 ReadGRecord VerifyGRecord AppendGRecord \
662 LoadTopography LoadTerrain \
665 RunWaypointParser RunAirspaceParser \
666 ReadPort RunPortHandler LogPort \
667 RunDeviceDriver RunDeclare RunFlightList RunDownloadFlight \
673 RunCirclingWind RunWindZigZag RunWindEKF \
676 RunCanvas RunMapWindow \
677 RunDialog RunListControl \
678 RunTextEntry RunNumberEntry RunTimeEntry RunAngleEntry \
682 RunWindArrowRenderer \
684 RunFinalGlideBarRenderer \
685 RunFAITriangleSectorRenderer \
689 RunAirspaceWarningDialog \
692 FeedVega EmulateDevice \
697 TaskInfo DumpTaskFile \
699 RunRepositoryParser \
705 ifeq ($(TARGET
),UNIX
)
706 DEBUG_PROGRAM_NAMES
+= \
713 DEBUG_PROGRAM_NAMES
+= FeedTCP \
717 ifeq ($(HAVE_HTTP
),y
)
718 DEBUG_PROGRAM_NAMES
+= DownloadFile RunDownloadToFile RunNOAADownloader RunSkyLinesTracking RunLiveTrack24
721 ifeq ($(HAVE_PCM_PLAYER
),y
)
722 DEBUG_PROGRAM_NAMES
+= PlayTone PlayVario DumpVario
725 ifeq ($(HAVE_CE
)$(findstring $(TARGET
),ALTAIR
),y
)
726 DEBUG_PROGRAM_NAMES
+= TodayInstall
729 DEBUG_PROGRAMS
= $(call name-to-bin
,$(DEBUG_PROGRAM_NAMES
))
731 DEBUG_REPLAY_SOURCES
= \
732 $(SRC
)/Device
/Port
/Port.
cpp \
733 $(SRC
)/Device
/Port
/NullPort.
cpp \
734 $(SRC
)/Device
/Driver.
cpp \
735 $(SRC
)/Device
/Register.
cpp \
736 $(SRC
)/Device
/Parser.
cpp \
737 $(SRC
)/Device
/Internal.
cpp \
738 $(SRC
)/IGC
/IGCParser.
cpp \
739 $(SRC
)/Units
/Descriptor.
cpp \
740 $(SRC
)/Units
/System.
cpp \
741 $(ENGINE_SRC_DIR
)/Airspace
/AirspaceWarningConfig.
cpp \
742 $(SRC
)/NMEA
/InputLine.
cpp \
743 $(SRC
)/NMEA
/Info.
cpp \
744 $(SRC
)/NMEA
/MoreData.
cpp \
745 $(SRC
)/NMEA
/SwitchState.
cpp \
746 $(SRC
)/NMEA
/Attitude.
cpp \
747 $(SRC
)/NMEA
/Acceleration.
cpp \
748 $(SRC
)/NMEA
/ExternalSettings.
cpp \
749 $(SRC
)/NMEA
/Checksum.
cpp \
750 $(SRC
)/NMEA
/Derived.
cpp \
751 $(SRC
)/NMEA
/VarioInfo.
cpp \
752 $(SRC
)/NMEA
/ClimbInfo.
cpp \
753 $(SRC
)/NMEA
/ClimbHistory.
cpp \
754 $(SRC
)/NMEA
/CirclingInfo.
cpp \
755 $(SRC
)/NMEA
/ThermalBand.
cpp \
756 $(SRC
)/NMEA
/ThermalLocator.
cpp \
757 $(SRC
)/NMEA
/FlyingState.
cpp \
758 $(SRC
)/Operation
/Operation.
cpp \
759 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
760 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
761 $(SRC
)/Engine
/Navigation
/TraceHistory.
cpp \
762 $(SRC
)/FLARM
/FlarmId.
cpp \
763 $(SRC
)/FLARM
/Traffic.
cpp \
764 $(SRC
)/FLARM
/List.
cpp \
765 $(SRC
)/Computer
/BasicComputer.
cpp \
766 $(SRC
)/Computer
/FlyingComputer.
cpp \
767 $(SRC
)/Atmosphere
/AirDensity.
cpp \
768 $(SRC
)/Atmosphere
/Pressure.
cpp \
769 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
770 $(SRC
)/Engine
/GlideSolvers
/GlidePolar.
cpp \
771 $(SRC
)/Engine
/GlideSolvers
/PolarCoefficients.
cpp \
772 $(SRC
)/Engine
/GlideSolvers
/GlideResult.
cpp \
773 $(SRC
)/Engine
/Route
/Config.
cpp \
774 $(SRC
)/Engine
/Task
/Stats
/TaskStats.
cpp \
775 $(SRC
)/Engine
/Task
/Stats
/CommonStats.
cpp \
776 $(SRC
)/Engine
/Task
/Stats
/ElementStat.
cpp \
777 $(SRC
)/Engine
/Task
/Stats
/DistanceStat.
cpp \
778 $(SRC
)/Engine
/Task
/Stats
/TaskVario.
cpp \
779 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
780 $(TEST_SRC_DIR
)/FakeGeoid.
cpp \
781 $(TEST_SRC_DIR
)/DebugReplayIGC.
cpp \
782 $(TEST_SRC_DIR
)/DebugReplayNMEA.
cpp \
783 $(TEST_SRC_DIR
)/DebugReplay.
cpp
784 DEBUG_REPLAY_LDADD
= \
790 BENCHMARK_PROJECTION_SOURCES
= \
791 $(SRC
)/Projection
/Projection.
cpp \
792 $(TEST_SRC_DIR
)/BenchmarkProjection.
cpp
793 BENCHMARK_PROJECTION_DEPENDS
= MATH
794 BENCHMARK_PROJECTION_CPPFLAGS
= $(SCREEN_CPPFLAGS
)
795 $(eval
$(call link-program
,BenchmarkProjection
,BENCHMARK_PROJECTION
))
797 BENCHMARK_FAI_TRIANGLE_SECTOR_SOURCES
= \
798 $(ENGINE_SRC_DIR
)/Task
/Shapes
/FAITriangleArea.
cpp \
799 $(TEST_SRC_DIR
)/BenchmarkFAITriangleSector.
cpp
800 BENCHMARK_FAI_TRIANGLE_SECTOR_DEPENDS
= GEO MATH
801 $(eval
$(call link-program
,BenchmarkFAITriangleSector
,BENCHMARK_FAI_TRIANGLE_SECTOR
))
803 DUMP_TEXT_FILE_SOURCES
= \
804 $(TEST_SRC_DIR
)/DumpTextFile.
cpp
805 DUMP_TEXT_FILE_DEPENDS
= IO OS ZZIP UTIL
806 $(eval
$(call link-program
,DumpTextFile
,DUMP_TEXT_FILE
))
808 RUN_KALMAN_FILTER_1D_SOURCES
= \
809 $(TEST_SRC_DIR
)/RunKalmanFilter1d.
cpp
810 RUN_KALMAN_FILTER_1D_DEPENDS
= IO OS MATH UTIL
811 $(eval
$(call link-program
,RunKalmanFilter1d
,RUN_KALMAN_FILTER_1D
))
813 ARC_APPROX_SOURCES
= \
814 $(SRC
)/Formatter
/GeoPointFormatter.
cpp \
815 $(TEST_SRC_DIR
)/ArcApprox.
cpp
816 ARC_APPROX_DEPENDS
= UTIL GEO MATH
817 $(eval
$(call link-program
,ArcApprox
,ARC_APPROX
))
819 DUMP_TEXT_ZIP_SOURCES
= \
820 $(TEST_SRC_DIR
)/DumpTextZip.
cpp
821 DUMP_TEXT_ZIP_DEPENDS
= IO ZZIP UTIL
822 $(eval
$(call link-program
,DumpTextZip
,DUMP_TEXT_ZIP
))
824 DUMP_HEX_COLOR_SOURCES
= \
825 $(SRC
)/Formatter
/HexColor.
cpp \
826 $(TEST_SRC_DIR
)/DumpHexColor.
cpp
827 DUMP_HEX_COLOR_DEPENDS
= SCREEN EVENT UTIL
828 $(eval
$(call link-program
,DumpHexColor
,DUMP_HEX_COLOR
))
830 DEBUG_DISPLAY_SOURCES
= \
831 $(SRC
)/Hardware
/Display.
cpp \
832 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
833 $(TEST_SRC_DIR
)/DebugDisplay.
cpp
834 DEBUG_DISPLAY_DEPENDS
= IO
835 $(eval
$(call link-program
,DebugDisplay
,DEBUG_DISPLAY
))
837 WRITE_TEXT_FILE_SOURCES
= \
838 $(TEST_SRC_DIR
)/WriteTextFile.
cpp
839 WRITE_TEXT_FILE_DEPENDS
= IO ZZIP
840 $(eval
$(call link-program
,WriteTextFile
,WRITE_TEXT_FILE
))
842 RUN_TEXT_WRITER_SOURCES
= \
843 $(TEST_SRC_DIR
)/RunTextWriter.
cpp
844 RUN_TEXT_WRITER_DEPENDS
= IO ZZIP
845 $(eval
$(call link-program
,RunTextWriter
,RUN_TEXT_WRITER
))
847 DOWNLOAD_FILE_SOURCES
= \
849 $(TEST_SRC_DIR
)/DownloadFile.
cpp
850 DOWNLOAD_FILE_DEPENDS
= IO LIBNET UTIL
851 $(eval
$(call link-program
,DownloadFile
,DOWNLOAD_FILE
))
853 RUN_DOWNLOAD_TO_FILE_SOURCES
= \
855 $(SRC
)/Logger
/MD5.
cpp \
856 $(SRC
)/OS
/FileUtil.
cpp \
857 $(SRC
)/Operation
/Operation.
cpp \
858 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
859 $(TEST_SRC_DIR
)/RunDownloadToFile.
cpp
860 RUN_DOWNLOAD_TO_FILE_DEPENDS
= LIBNET UTIL
861 $(eval
$(call link-program
,RunDownloadToFile
,RUN_DOWNLOAD_TO_FILE
))
863 RUN_NOAA_DOWNLOADER_SOURCES
= \
865 $(SRC
)/Weather
/NOAADownloader.
cpp \
866 $(SRC
)/Weather
/NOAAStore.
cpp \
867 $(SRC
)/Weather
/NOAAUpdater.
cpp \
868 $(SRC
)/Weather
/METARParser.
cpp \
869 $(SRC
)/Atmosphere
/Pressure.
cpp \
870 $(SRC
)/Formatter
/GeoPointFormatter.
cpp \
871 $(SRC
)/Formatter
/Units.
cpp \
872 $(SRC
)/Formatter
/UserUnits.
cpp \
873 $(SRC
)/Units
/Units.
cpp \
874 $(SRC
)/Units
/Settings.
cpp \
875 $(SRC
)/Units
/Descriptor.
cpp \
876 $(SRC
)/Units
/System.
cpp \
877 $(SRC
)/Operation
/Operation.
cpp \
878 $(TEST_SRC_DIR
)/ConsoleJobRunner.
cpp \
879 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
880 $(TEST_SRC_DIR
)/RunNOAADownloader.
cpp
881 RUN_NOAA_DOWNLOADER_DEPENDS
= GEO IO MATH LIBNET UTIL TIME
882 $(eval
$(call link-program
,RunNOAADownloader
,RUN_NOAA_DOWNLOADER
))
884 RUN_SL_TRACKING_SOURCES
= \
885 $(DEBUG_REPLAY_SOURCES
) \
886 $(SRC
)/NMEA
/Info.
cpp \
887 $(SRC
)/NMEA
/ExternalSettings.
cpp \
888 $(SRC
)/NMEA
/Attitude.
cpp \
889 $(SRC
)/NMEA
/Acceleration.
cpp \
890 $(SRC
)/Tracking
/SkyLines
/Client.
cpp \
891 $(TEST_SRC_DIR
)/RunSkyLinesTracking.
cpp
892 RUN_SL_TRACKING_LDADD
= $(ASYNC_LDADD
) $(DEBUG_REPLAY_LDADD
)
893 RUN_SL_TRACKING_DEPENDS
= LIBNET OS GEO MATH UTIL TIME
894 $(eval
$(call link-program
,RunSkyLinesTracking
,RUN_SL_TRACKING
))
896 RUN_LIVETRACK24_SOURCES
= \
897 $(DEBUG_REPLAY_SOURCES
) \
898 $(SRC
)/Tracking
/LiveTrack24.
cpp \
900 $(SRC
)/Units
/Units.
cpp \
901 $(SRC
)/Units
/Settings.
cpp \
902 $(SRC
)/Units
/Descriptor.
cpp \
903 $(TEST_SRC_DIR
)/RunLiveTrack24.
cpp
904 RUN_LIVETRACK24_LDADD
= $(DEBUG_REPLAY_LDADD
)
905 RUN_LIVETRACK24_DEPENDS
= LIBNET GEO MATH UTIL TIME
906 $(eval
$(call link-program
,RunLiveTrack24
,RUN_LIVETRACK24
))
908 RUN_REPOSITORY_PARSER_SOURCES
= \
909 $(SRC
)/Repository
/FileRepository.
cpp \
910 $(SRC
)/Repository
/Parser.
cpp \
911 $(TEST_SRC_DIR
)/RunRepositoryParser.
cpp
912 RUN_REPOSITORY_PARSER_DEPENDS
= LIBNET IO OS UTIL
913 $(eval
$(call link-program
,RunRepositoryParser
,RUN_REPOSITORY_PARSER
))
915 RUN_XML_PARSER_SOURCES
= \
916 $(SRC
)/XML
/Node.
cpp \
917 $(SRC
)/XML
/Parser.
cpp \
918 $(SRC
)/XML
/Writer.
cpp \
919 $(TEST_SRC_DIR
)/RunXMLParser.
cpp
920 RUN_XML_PARSER_DEPENDS
= IO OS UTIL
921 $(eval
$(call link-program
,RunXMLParser
,RUN_XML_PARSER
))
924 $(SRC
)/Language
/MOFile.
cpp \
925 $(SRC
)/OS
/FileMapping.
cpp \
926 $(TEST_SRC_DIR
)/ReadMO.
cpp
927 READ_MO_DEPENDS
= UTIL
928 $(eval
$(call link-program
,ReadMO
,READ_MO
))
930 READ_PROFILE_STRING_SOURCES
= \
931 $(SRC
)/LocalPath.
cpp \
932 $(SRC
)/Profile
/Profile.
cpp \
933 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
934 $(TEST_SRC_DIR
)/ReadProfileString.
cpp
935 READ_PROFILE_STRING_DEPENDS
= PROFILE IO OS UTIL
936 $(eval
$(call link-program
,ReadProfileString
,READ_PROFILE_STRING
))
938 READ_PROFILE_INT_SOURCES
= \
939 $(SRC
)/LocalPath.
cpp \
940 $(SRC
)/Profile
/Profile.
cpp \
941 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
942 $(TEST_SRC_DIR
)/ReadProfileInt.
cpp
943 READ_PROFILE_INT_DEPENDS
= PROFILE IO OS UTIL
944 $(eval
$(call link-program
,ReadProfileInt
,READ_PROFILE_INT
))
946 WRITE_PROFILE_STRING_SOURCES
= \
947 $(SRC
)/LocalPath.
cpp \
948 $(SRC
)/Profile
/Profile.
cpp \
949 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
950 $(TEST_SRC_DIR
)/WriteProfileString.
cpp
951 WRITE_PROFILE_STRING_DEPENDS
= PROFILE IO OS UTIL
952 $(eval
$(call link-program
,WriteProfileString
,WRITE_PROFILE_STRING
))
954 WRITE_PROFILE_INT_SOURCES
= \
955 $(SRC
)/LocalPath.
cpp \
956 $(SRC
)/Profile
/Profile.
cpp \
957 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
958 $(TEST_SRC_DIR
)/WriteProfileInt.
cpp
959 WRITE_PROFILE_INT_DEPENDS
= PROFILE IO OS UTIL
960 $(eval
$(call link-program
,WriteProfileInt
,WRITE_PROFILE_INT
))
963 $(SRC
)/Logger
/MD5.
cpp \
964 $(TEST_SRC_DIR
)/RunMD5.
cpp
965 $(eval
$(call link-program
,RunMD5
,RUN_MD5
))
967 READ_GRECORD_SOURCES
= \
968 $(SRC
)/Logger
/GRecord.
cpp \
969 $(SRC
)/Logger
/MD5.
cpp \
970 $(TEST_SRC_DIR
)/ReadGRecord.
cpp
971 READ_GRECORD_DEPENDS
= IO OS UTIL
972 $(eval
$(call link-program
,ReadGRecord
,READ_GRECORD
))
974 VERIFY_GRECORD_SOURCES
= \
975 $(SRC
)/Logger
/GRecord.
cpp \
976 $(SRC
)/Logger
/MD5.
cpp \
977 $(TEST_SRC_DIR
)/VerifyGRecord.
cpp
978 VERIFY_GRECORD_DEPENDS
= IO OS UTIL
979 $(eval
$(call link-program
,VerifyGRecord
,VERIFY_GRECORD
))
981 APPEND_GRECORD_SOURCES
= \
982 $(SRC
)/Logger
/GRecord.
cpp \
983 $(SRC
)/Logger
/MD5.
cpp \
984 $(TEST_SRC_DIR
)/AppendGRecord.
cpp
985 APPEND_GRECORD_DEPENDS
= IO OS UTIL
986 $(eval
$(call link-program
,AppendGRecord
,APPEND_GRECORD
))
988 ADD_CHECKSUM_SOURCES
= \
989 $(TEST_SRC_DIR
)/AddChecksum.
cpp
990 ADD_CHECKSUM_DEPENDS
= IO
991 $(eval
$(call link-program
,AddChecksum
,ADD_CHECKSUM
))
993 KEY_CODE_DUMPER_SOURCES
= \
994 $(SRC
)/Hardware
/Display.
cpp \
995 $(SRC
)/Screen
/Layout.
cpp \
996 $(SRC
)/Compatibility
/fmode.c \
997 $(SRC
)/ResourceLoader.
cpp \
998 $(TEST_SRC_DIR
)/Fonts.
cpp \
999 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1000 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1001 $(TEST_SRC_DIR
)/KeyCodeDumper.
cpp
1002 KEY_CODE_DUMPER_LDADD
= $(FAKE_LIBS
)
1003 KEY_CODE_DUMPER_DEPENDS
= SCREEN EVENT OS THREAD MATH UTIL
1004 $(eval
$(call link-program
,KeyCodeDumper
,KEY_CODE_DUMPER
))
1006 LOAD_TOPOGRAPHY_SOURCES
= \
1007 $(SRC
)/Topography
/TopographyStore.
cpp \
1008 $(SRC
)/Topography
/TopographyFile.
cpp \
1009 $(SRC
)/Topography
/XShape.
cpp \
1010 $(SRC
)/Projection
/Projection.
cpp \
1011 $(SRC
)/Projection
/WindowProjection.
cpp \
1012 $(SRC
)/Operation
/Operation.
cpp \
1013 $(TEST_SRC_DIR
)/LoadTopography.
cpp
1015 LOAD_TOPOGRAPHY_SOURCES
+= \
1016 $(SCREEN_SRC_DIR
)/OpenGL
/Triangulate.
cpp
1018 LOAD_TOPOGRAPHY_DEPENDS
= GEO MATH IO UTIL SHAPELIB ZZIP
1019 LOAD_TOPOGRAPHY_CPPFLAGS
= $(SCREEN_CPPFLAGS
)
1020 $(eval
$(call link-program
,LoadTopography
,LOAD_TOPOGRAPHY
))
1022 LOAD_TERRAIN_SOURCES
= \
1023 $(SRC
)/Operation
/Operation.
cpp \
1024 $(TEST_SRC_DIR
)/LoadTerrain.
cpp
1025 LOAD_TERRAIN_CPPFLAGS
= $(SCREEN_CPPFLAGS
)
1026 LOAD_TERRAIN_DEPENDS
= TERRAIN GEO MATH IO OS ZZIP UTIL
1027 $(eval
$(call link-program
,LoadTerrain
,LOAD_TERRAIN
))
1029 RUN_HEIGHT_MATRIX_SOURCES
= \
1030 $(SRC
)/Projection
/Projection.
cpp \
1031 $(SRC
)/Projection
/WindowProjection.
cpp \
1032 $(SRC
)/Operation
/Operation.
cpp \
1033 $(TEST_SRC_DIR
)/RunHeightMatrix.
cpp
1034 RUN_HEIGHT_MATRIX_CPPFLAGS
= $(SCREEN_CPPFLAGS
)
1035 RUN_HEIGHT_MATRIX_DEPENDS
= TERRAIN GEO MATH IO OS ZZIP UTIL
1036 $(eval
$(call link-program
,RunHeightMatrix
,RUN_HEIGHT_MATRIX
))
1038 RUN_INPUT_PARSER_SOURCES
= \
1039 $(SRC
)/Input
/InputKeys.
cpp \
1040 $(SRC
)/Input
/InputConfig.
cpp \
1041 $(SRC
)/Input
/InputParser.
cpp \
1042 $(SRC
)/Menu
/MenuData.
cpp \
1043 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1044 $(TEST_SRC_DIR
)/RunInputParser.
cpp
1045 RUN_INPUT_PARSER_DEPENDS
= IO OS UTIL
1046 $(eval
$(call link-program
,RunInputParser
,RUN_INPUT_PARSER
))
1048 RUN_WAY_POINT_PARSER_SOURCES
= \
1049 $(SRC
)/Waypoint
/WaypointFileType.
cpp \
1050 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
1051 $(SRC
)/Waypoint
/WaypointReader.
cpp \
1052 $(SRC
)/Waypoint
/WaypointReaderWinPilot.
cpp \
1053 $(SRC
)/Waypoint
/WaypointReaderFS.
cpp \
1054 $(SRC
)/Waypoint
/WaypointReaderOzi.
cpp \
1055 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
1056 $(SRC
)/Waypoint
/WaypointReaderZander.
cpp \
1057 $(SRC
)/Waypoint
/WaypointReaderCompeGPS.
cpp \
1058 $(SRC
)/Waypoint
/WaypointWriter.
cpp \
1059 $(SRC
)/Units
/Descriptor.
cpp \
1060 $(SRC
)/Units
/System.
cpp \
1061 $(SRC
)/Compatibility
/fmode.c \
1062 $(SRC
)/Operation
/Operation.
cpp \
1063 $(SRC
)/RadioFrequency.
cpp \
1064 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
1065 $(TEST_SRC_DIR
)/RunWaypointParser.
cpp
1066 RUN_WAY_POINT_PARSER_LDADD
= $(FAKE_LIBS
)
1067 RUN_WAY_POINT_PARSER_DEPENDS
= WAYPOINT IO OS THREAD ZZIP GEO MATH UTIL
1068 $(eval
$(call link-program
,RunWaypointParser
,RUN_WAY_POINT_PARSER
))
1070 NEAREST_WAYPOINTS_SOURCES
= \
1071 $(SRC
)/Waypoint
/WaypointFileType.
cpp \
1072 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
1073 $(SRC
)/Waypoint
/WaypointReader.
cpp \
1074 $(SRC
)/Waypoint
/WaypointReaderWinPilot.
cpp \
1075 $(SRC
)/Waypoint
/WaypointReaderFS.
cpp \
1076 $(SRC
)/Waypoint
/WaypointReaderOzi.
cpp \
1077 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
1078 $(SRC
)/Waypoint
/WaypointReaderZander.
cpp \
1079 $(SRC
)/Waypoint
/WaypointReaderCompeGPS.
cpp \
1080 $(SRC
)/Waypoint
/WaypointWriter.
cpp \
1081 $(SRC
)/Units
/Descriptor.
cpp \
1082 $(SRC
)/Units
/System.
cpp \
1083 $(SRC
)/Compatibility
/fmode.c \
1084 $(SRC
)/Operation
/Operation.
cpp \
1085 $(SRC
)/RadioFrequency.
cpp \
1086 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
1087 $(TEST_SRC_DIR
)/NearestWaypoints.
cpp
1088 NEAREST_WAYPOINTS_LDADD
= $(FAKE_LIBS
)
1089 NEAREST_WAYPOINTS_DEPENDS
= WAYPOINT IO OS THREAD ZZIP GEO MATH UTIL
1090 $(eval
$(call link-program
,NearestWaypoints
,NEAREST_WAYPOINTS
))
1092 RUN_AIRSPACE_PARSER_SOURCES
= \
1093 $(SRC
)/Airspace
/AirspaceParser.
cpp \
1094 $(SRC
)/Units
/Descriptor.
cpp \
1095 $(SRC
)/Units
/System.
cpp \
1096 $(SRC
)/Operation
/Operation.
cpp \
1097 $(SRC
)/Atmosphere
/Pressure.
cpp \
1098 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1099 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
1100 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1101 $(TEST_SRC_DIR
)/RunAirspaceParser.
cpp
1102 RUN_AIRSPACE_PARSER_LDADD
= $(FAKE_LIBS
)
1103 RUN_AIRSPACE_PARSER_DEPENDS
= IO OS AIRSPACE ZZIP GEO MATH UTIL
1104 $(eval
$(call link-program
,RunAirspaceParser
,RUN_AIRSPACE_PARSER
))
1106 READ_PORT_SOURCES
= \
1107 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1108 $(SRC
)/OS
/LogError.
cpp \
1109 $(SRC
)/Operation
/Operation.
cpp \
1110 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1111 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1112 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1113 $(TEST_SRC_DIR
)/ReadPort.
cpp
1114 READ_PORT_DEPENDS
= PORT ASYNC OS THREAD UTIL
1115 $(eval
$(call link-program
,ReadPort
,READ_PORT
))
1117 RUN_PORT_HANDLER_SOURCES
= \
1118 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1119 $(SRC
)/OS
/LogError.
cpp \
1120 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1121 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1122 $(TEST_SRC_DIR
)/RunPortHandler.
cpp
1123 RUN_PORT_HANDLER_DEPENDS
= PORT ASYNC OS THREAD UTIL
1124 $(eval
$(call link-program
,RunPortHandler
,RUN_PORT_HANDLER
))
1126 LOG_PORT_SOURCES
= \
1127 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1128 $(SRC
)/OS
/LogError.
cpp \
1129 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1130 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1131 $(TEST_SRC_DIR
)/LogPort.
cpp
1132 LOG_PORT_DEPENDS
= PORT ASYNC OS THREAD UTIL
1133 $(eval
$(call link-program
,LogPort
,LOG_PORT
))
1135 RUN_DEVICE_DRIVER_SOURCES
= \
1136 $(SRC
)/FLARM
/FlarmId.
cpp \
1137 $(SRC
)/Units
/Descriptor.
cpp \
1138 $(SRC
)/Units
/System.
cpp \
1139 $(SRC
)/Device
/Port
/Port.
cpp \
1140 $(SRC
)/Device
/Port
/NullPort.
cpp \
1141 $(SRC
)/Device
/Driver.
cpp \
1142 $(SRC
)/Device
/Register.
cpp \
1143 $(SRC
)/Device
/Parser.
cpp \
1144 $(SRC
)/Device
/Internal.
cpp \
1145 $(SRC
)/FLARM
/Traffic.
cpp \
1146 $(SRC
)/FLARM
/List.
cpp \
1147 $(SRC
)/NMEA
/Info.
cpp \
1148 $(SRC
)/NMEA
/Acceleration.
cpp \
1149 $(SRC
)/NMEA
/Attitude.
cpp \
1150 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1151 $(SRC
)/NMEA
/SwitchState.
cpp \
1152 $(SRC
)/NMEA
/InputLine.
cpp \
1153 $(SRC
)/NMEA
/Checksum.
cpp \
1154 $(SRC
)/IGC
/IGCParser.
cpp \
1155 $(SRC
)/FLARM
/FlarmCalculations.
cpp \
1156 $(SRC
)/Computer
/ClimbAverageCalculator.
cpp \
1157 $(SRC
)/Operation
/Operation.
cpp \
1158 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
1159 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
1160 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1161 $(SRC
)/Atmosphere
/Pressure.
cpp \
1162 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
1163 $(TEST_SRC_DIR
)/FakeGeoid.
cpp \
1164 $(TEST_SRC_DIR
)/RunDeviceDriver.
cpp
1165 RUN_DEVICE_DRIVER_DEPENDS
= DRIVER IO OS THREAD GEO MATH UTIL TIME
1166 $(eval
$(call link-program
,RunDeviceDriver
,RUN_DEVICE_DRIVER
))
1168 RUN_DECLARE_SOURCES
= \
1169 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1170 $(SRC
)/Units
/Descriptor.
cpp \
1171 $(SRC
)/Units
/System.
cpp \
1172 $(SRC
)/Device
/Driver.
cpp \
1173 $(SRC
)/Device
/Register.
cpp \
1174 $(SRC
)/Device
/Internal.
cpp \
1175 $(SRC
)/Device
/Declaration.
cpp \
1176 $(SRC
)/NMEA
/InputLine.
cpp \
1177 $(SRC
)/NMEA
/Checksum.
cpp \
1178 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1179 $(SRC
)/NMEA
/Info.
cpp \
1180 $(SRC
)/NMEA
/SwitchState.
cpp \
1181 $(SRC
)/NMEA
/Attitude.
cpp \
1182 $(SRC
)/NMEA
/Acceleration.
cpp \
1183 $(SRC
)/IGC
/IGCParser.
cpp \
1184 $(SRC
)/OS
/LogError.
cpp \
1185 $(SRC
)/Operation
/Operation.
cpp \
1186 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
1187 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
1188 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1189 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1190 $(SRC
)/Atmosphere
/Pressure.
cpp \
1191 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1192 $(TEST_SRC_DIR
)/FakeGeoid.
cpp \
1193 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
1194 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1195 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1196 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1197 $(TEST_SRC_DIR
)/RunDeclare.
cpp
1198 RUN_DECLARE_DEPENDS
= DRIVER PORT ASYNC IO OS THREAD WAYPOINT GEO TIME MATH UTIL
1199 $(eval
$(call link-program
,RunDeclare
,RUN_DECLARE
))
1201 RUN_ENABLE_NMEA_SOURCES
= \
1202 $(SRC
)/OS
/LogError.
cpp \
1203 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1204 $(SRC
)/Units
/Descriptor.
cpp \
1205 $(SRC
)/Units
/System.
cpp \
1206 $(SRC
)/Device
/Driver.
cpp \
1207 $(SRC
)/Device
/Register.
cpp \
1208 $(SRC
)/Device
/Internal.
cpp \
1209 $(SRC
)/Device
/Declaration.
cpp \
1210 $(SRC
)/NMEA
/InputLine.
cpp \
1211 $(SRC
)/NMEA
/Checksum.
cpp \
1212 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1213 $(SRC
)/NMEA
/Info.
cpp \
1214 $(SRC
)/NMEA
/SwitchState.
cpp \
1215 $(SRC
)/NMEA
/Attitude.
cpp \
1216 $(SRC
)/NMEA
/Acceleration.
cpp \
1217 $(SRC
)/IGC
/IGCParser.
cpp \
1218 $(SRC
)/Operation
/Operation.
cpp \
1219 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
1220 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
1221 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1222 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1223 $(SRC
)/Atmosphere
/Pressure.
cpp \
1224 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1225 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1226 $(TEST_SRC_DIR
)/FakeGeoid.
cpp \
1227 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
1228 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1229 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1230 $(TEST_SRC_DIR
)/RunEnableNMEA.
cpp
1231 RUN_ENABLE_NMEA_DEPENDS
= DRIVER PORT TIME MATH UTIL ASYNC IO OS THREAD
1232 $(eval
$(call link-program
,RunEnableNMEA
,RUN_ENABLE_NMEA
))
1234 RUN_VEGA_SETTINGS_SOURCES
= \
1236 $(SRC
)/Device
/Driver.
cpp \
1237 $(SRC
)/Device
/Internal.
cpp \
1238 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1239 $(SRC
)/NMEA
/InputLine.
cpp \
1240 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1241 $(SRC
)/OS
/LogError.
cpp \
1242 $(SRC
)/Operation
/Operation.
cpp \
1243 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1244 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
1245 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1246 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1247 $(TEST_SRC_DIR
)/RunVegaSettings.
cpp
1248 RUN_VEGA_SETTINGS_DEPENDS
= PORT ASYNC IO OS THREAD MATH UTIL
1249 $(eval
$(call link-program
,RunVegaSettings
,RUN_VEGA_SETTINGS
))
1251 RUN_FLARM_UTILS_SOURCES
= \
1252 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1253 $(SRC
)/Device
/Driver.
cpp \
1254 $(SRC
)/Device
/Internal.
cpp \
1255 $(SRC
)/Device
/Declaration.
cpp \
1256 $(SRC
)/OS
/LogError.
cpp \
1257 $(SRC
)/Operation
/Operation.
cpp \
1258 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1259 $(SRC
)/NMEA
/InputLine.
cpp \
1260 $(SRC
)/NMEA
/Checksum.
cpp \
1261 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1262 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1263 $(TEST_SRC_DIR
)/RunFlarmUtils.
cpp
1264 RUN_FLARM_UTILS_DEPENDS
= DRIVER PORT ASYNC IO OS THREAD GEO MATH UTIL
1265 $(eval
$(call link-program
,RunFlarmUtils
,RUN_FLARM_UTILS
))
1267 RUN_LX1600_UTILS_SOURCES
= \
1268 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1269 $(SRC
)/Device
/Driver.
cpp \
1270 $(SRC
)/Device
/Internal.
cpp \
1271 $(SRC
)/Device
/Declaration.
cpp \
1272 $(SRC
)/OS
/LogError.
cpp \
1273 $(SRC
)/Operation
/Operation.
cpp \
1274 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1275 $(SRC
)/NMEA
/InputLine.
cpp \
1276 $(SRC
)/NMEA
/Checksum.
cpp \
1277 $(SRC
)/Atmosphere
/Pressure.
cpp \
1278 $(SRC
)/Units
/Descriptor.
cpp \
1279 $(SRC
)/Units
/System.
cpp \
1280 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1281 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1282 $(TEST_SRC_DIR
)/RunLX1600Utils.
cpp
1283 RUN_LX1600_UTILS_DEPENDS
= DRIVER PORT ASYNC IO OS THREAD GEO MATH UTIL
1284 $(eval
$(call link-program
,RunLX1600Utils
,RUN_LX1600_UTILS
))
1286 RUN_FLIGHT_LIST_SOURCES
= \
1287 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1288 $(SRC
)/Units
/Descriptor.
cpp \
1289 $(SRC
)/Units
/System.
cpp \
1290 $(SRC
)/Device
/Driver.
cpp \
1291 $(SRC
)/Device
/Register.
cpp \
1292 $(SRC
)/Device
/Internal.
cpp \
1293 $(SRC
)/Device
/Declaration.
cpp \
1294 $(SRC
)/NMEA
/InputLine.
cpp \
1295 $(SRC
)/NMEA
/Checksum.
cpp \
1296 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1297 $(SRC
)/NMEA
/Info.
cpp \
1298 $(SRC
)/NMEA
/SwitchState.
cpp \
1299 $(SRC
)/NMEA
/Attitude.
cpp \
1300 $(SRC
)/NMEA
/Acceleration.
cpp \
1301 $(SRC
)/IGC
/IGCParser.
cpp \
1302 $(SRC
)/OS
/LogError.
cpp \
1303 $(SRC
)/Operation
/Operation.
cpp \
1304 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
1305 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
1306 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1307 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1308 $(SRC
)/Atmosphere
/Pressure.
cpp \
1309 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1310 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
1311 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1312 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1313 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1314 $(TEST_SRC_DIR
)/RunFlightList.
cpp
1315 RUN_FLIGHT_LIST_DEPENDS
= DRIVER PORT ASYNC IO OS THREAD GEO TIME MATH UTIL
1316 $(eval
$(call link-program
,RunFlightList
,RUN_FLIGHT_LIST
))
1318 RUN_DOWNLOAD_FLIGHT_SOURCES
= \
1319 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1320 $(SRC
)/Units
/Descriptor.
cpp \
1321 $(SRC
)/Units
/System.
cpp \
1322 $(SRC
)/Device
/Driver.
cpp \
1323 $(SRC
)/Device
/Register.
cpp \
1324 $(SRC
)/Device
/Internal.
cpp \
1325 $(SRC
)/Device
/Declaration.
cpp \
1326 $(SRC
)/NMEA
/InputLine.
cpp \
1327 $(SRC
)/NMEA
/Checksum.
cpp \
1328 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1329 $(SRC
)/NMEA
/Info.
cpp \
1330 $(SRC
)/NMEA
/SwitchState.
cpp \
1331 $(SRC
)/NMEA
/Attitude.
cpp \
1332 $(SRC
)/NMEA
/Acceleration.
cpp \
1333 $(SRC
)/IGC
/IGCParser.
cpp \
1334 $(SRC
)/OS
/LogError.
cpp \
1335 $(SRC
)/Operation
/Operation.
cpp \
1336 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
1337 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
1338 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1339 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1340 $(SRC
)/Atmosphere
/Pressure.
cpp \
1341 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1342 $(TEST_SRC_DIR
)/FakeMessage.
cpp \
1343 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1344 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1345 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1346 $(TEST_SRC_DIR
)/RunDownloadFlight.
cpp
1347 RUN_DOWNLOAD_FLIGHT_DEPENDS
= DRIVER PORT ASYNC IO OS THREAD GEO TIME MATH UTIL
1348 $(eval
$(call link-program
,RunDownloadFlight
,RUN_DOWNLOAD_FLIGHT
))
1350 CAI302_TOOL_SOURCES
= \
1351 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
1352 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1353 $(SRC
)/Atmosphere
/Pressure.
cpp \
1354 $(SRC
)/Units
/Descriptor.
cpp \
1355 $(SRC
)/Units
/System.
cpp \
1356 $(SRC
)/NMEA
/InputLine.
cpp \
1357 $(SRC
)/NMEA
/Checksum.
cpp \
1358 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1359 $(SRC
)/NMEA
/Info.
cpp \
1360 $(SRC
)/NMEA
/SwitchState.
cpp \
1361 $(SRC
)/NMEA
/Attitude.
cpp \
1362 $(SRC
)/NMEA
/Acceleration.
cpp \
1363 $(SRC
)/Device
/Driver.
cpp \
1364 $(SRC
)/Operation
/Operation.
cpp \
1365 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
1366 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
1367 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
1368 $(SRC
)/OS
/LogError.
cpp \
1369 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1370 $(TEST_SRC_DIR
)/DebugPort.
cpp \
1371 $(TEST_SRC_DIR
)/CAI302Tool.
cpp
1372 CAI302_TOOL_DEPENDS
= CAI302 PORT ASYNC OS THREAD IO TIME MATH UTIL
1373 $(eval
$(call link-program
,CAI302Tool
,CAI302_TOOL
))
1375 TEST_LXN_TO_IGC_SOURCES
= \
1376 $(SRC
)/Device
/Driver
/LX
/Convert.
cpp \
1377 $(SRC
)/Device
/Driver
/LX
/LXN.
cpp \
1378 $(TEST_SRC_DIR
)/tap.c \
1379 $(TEST_SRC_DIR
)/TestLXNToIGC.
cpp
1380 TEST_LXN_TO_IGC_DEPENDS
=
1381 $(eval
$(call link-program
,TestLXNToIGC
,TEST_LXN_TO_IGC
))
1384 $(SRC
)/Device
/Driver
/LX
/Convert.
cpp \
1385 $(SRC
)/Device
/Driver
/LX
/LXN.
cpp \
1386 $(TEST_SRC_DIR
)/lxn2igc.
cpp
1387 $(eval
$(call link-program
,lxn2igc
,LXN2IGC
))
1389 RUN_IGC_WRITER_SOURCES
= \
1390 $(DEBUG_REPLAY_SOURCES
) \
1391 $(SRC
)/Version.
cpp \
1392 $(SRC
)/FLARM
/FlarmCalculations.
cpp \
1393 $(SRC
)/Computer
/ClimbAverageCalculator.
cpp \
1394 $(SRC
)/IGC
/IGCFix.
cpp \
1395 $(SRC
)/IGC
/IGCWriter.
cpp \
1396 $(SRC
)/IGC
/IGCString.
cpp \
1397 $(SRC
)/Logger
/LoggerFRecord.
cpp \
1398 $(SRC
)/Logger
/GRecord.
cpp \
1399 $(SRC
)/Logger
/LoggerEPE.
cpp \
1400 $(SRC
)/Logger
/MD5.
cpp \
1401 $(SRC
)/Operation
/Operation.
cpp \
1402 $(TEST_SRC_DIR
)/RunIGCWriter.
cpp
1403 RUN_IGC_WRITER_LDADD
= $(DEBUG_REPLAY_LDADD
)
1404 RUN_IGC_WRITER_DEPENDS
= GEO MATH UTIL TIME
1405 $(eval
$(call link-program
,RunIGCWriter
,RUN_IGC_WRITER
))
1407 RUN_FLIGHT_LOGGER_SOURCES
= \
1408 $(DEBUG_REPLAY_SOURCES
) \
1409 $(SRC
)/Computer
/CirclingComputer.
cpp \
1410 $(SRC
)/Logger
/FlightLogger.
cpp \
1411 $(TEST_SRC_DIR
)/RunFlightLogger.
cpp
1412 RUN_FLIGHT_LOGGER_LDADD
= $(DEBUG_REPLAY_LDADD
)
1413 RUN_FLIGHT_LOGGER_DEPENDS
= GEO MATH UTIL TIME
1414 $(eval
$(call link-program
,RunFlightLogger
,RUN_FLIGHT_LOGGER
))
1416 RUN_CIRCLING_WIND_SOURCES
= \
1417 $(DEBUG_REPLAY_SOURCES
) \
1418 $(SRC
)/Formatter
/TimeFormatter.
cpp \
1419 $(SRC
)/Computer
/CirclingComputer.
cpp \
1420 $(SRC
)/Wind
/CirclingWind.
cpp \
1421 $(TEST_SRC_DIR
)/RunCirclingWind.
cpp
1422 RUN_CIRCLING_WIND_LDADD
= $(DEBUG_REPLAY_LDADD
)
1423 RUN_CIRCLING_WIND_DEPENDS
= GEO MATH UTIL TIME
1424 $(eval
$(call link-program
,RunCirclingWind
,RUN_CIRCLING_WIND
))
1426 RUN_WIND_ZIG_ZAG_SOURCES
= \
1427 $(DEBUG_REPLAY_SOURCES
) \
1428 $(SRC
)/Wind
/WindZigZag.
cpp \
1429 $(TEST_SRC_DIR
)/RunWindZigZag.
cpp
1430 RUN_WIND_ZIG_ZAG_LDADD
= $(DEBUG_REPLAY_LDADD
)
1431 RUN_WIND_ZIG_ZAG_DEPENDS
= GEO MATH UTIL TIME
1432 $(eval
$(call link-program
,RunWindZigZag
,RUN_WIND_ZIG_ZAG
))
1434 RUN_WIND_EKF_SOURCES
= \
1435 $(DEBUG_REPLAY_SOURCES
) \
1436 $(SRC
)/Wind
/WindEKF.
cpp \
1437 $(SRC
)/Wind
/WindEKFGlue.
cpp \
1438 $(TEST_SRC_DIR
)/RunWindEKF.
cpp
1439 RUN_WIND_EKF_LDADD
= $(DEBUG_REPLAY_LDADD
)
1440 RUN_WIND_EKF_DEPENDS
= GEO MATH UTIL TIME
1441 $(eval
$(call link-program
,RunWindEKF
,RUN_WIND_EKF
))
1443 RUN_TASK_SOURCES
= \
1444 $(SRC
)/Formatter
/TimeFormatter.
cpp \
1445 $(SRC
)/NMEA
/Aircraft.
cpp \
1446 $(SRC
)/Task
/TaskFile.
cpp \
1447 $(SRC
)/Task
/TaskFileXCSoar.
cpp \
1448 $(SRC
)/Task
/TaskFileSeeYou.
cpp \
1449 $(SRC
)/Task
/TaskFileIGC.
cpp \
1450 $(SRC
)/Task
/Serialiser.
cpp \
1451 $(SRC
)/Task
/Deserialiser.
cpp \
1452 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
1453 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
1454 $(SRC
)/RadioFrequency.
cpp \
1455 $(SRC
)/XML
/Node.
cpp \
1456 $(SRC
)/XML
/Parser.
cpp \
1457 $(SRC
)/XML
/Writer.
cpp \
1458 $(SRC
)/XML
/DataNode.
cpp \
1459 $(SRC
)/XML
/DataNodeXML.
cpp \
1460 $(SRC
)/Engine
/Util
/Gradient.
cpp \
1461 $(DEBUG_REPLAY_SOURCES
) \
1462 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
1463 $(TEST_SRC_DIR
)/RunTask.
cpp
1464 RUN_TASK_LDADD
= $(DEBUG_REPLAY_LDADD
)
1465 RUN_TASK_DEPENDS
= TASK WAYPOINT GLIDE GEO MATH UTIL IO TIME
1466 $(eval
$(call link-program
,RunTask
,RUN_TASK
))
1468 RUN_TRACE_SOURCES
= \
1469 $(DEBUG_REPLAY_SOURCES
) \
1470 $(SRC
)/IGC
/IGCParser.
cpp \
1471 $(SRC
)/NMEA
/Aircraft.
cpp \
1472 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlideSettings.
cpp \
1473 $(ENGINE_SRC_DIR
)/Trace
/Point.
cpp \
1474 $(ENGINE_SRC_DIR
)/Trace
/Trace.
cpp \
1475 $(TEST_SRC_DIR
)/Printing.
cpp \
1476 $(TEST_SRC_DIR
)/RunTrace.
cpp
1477 RUN_TRACE_LDADD
= $(DEBUG_REPLAY_LDADD
)
1478 RUN_TRACE_DEPENDS
= UTIL GEO MATH TIME
1479 $(eval
$(call link-program
,RunTrace
,RUN_TRACE
))
1482 $(DEBUG_REPLAY_SOURCES
) \
1483 $(SRC
)/IGC
/IGCParser.
cpp \
1484 $(SRC
)/NMEA
/Aircraft.
cpp \
1485 $(ENGINE_SRC_DIR
)/Trace
/Point.
cpp \
1486 $(ENGINE_SRC_DIR
)/Trace
/Trace.
cpp \
1487 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
1488 $(TEST_SRC_DIR
)/Printing.
cpp \
1489 $(TEST_SRC_DIR
)/ContestPrinting.
cpp \
1490 $(TEST_SRC_DIR
)/RunOLCAnalysis.
cpp
1491 RUN_OLC_LDADD
= $(DEBUG_REPLAY_LDADD
)
1492 RUN_OLC_DEPENDS
= CONTEST UTIL GEO MATH TIME
1493 $(eval
$(call link-program
,RunOLCAnalysis
,RUN_OLC
))
1495 ANALYSE_FLIGHT_SOURCES
= \
1496 $(DEBUG_REPLAY_SOURCES
) \
1497 $(SRC
)/NMEA
/Aircraft.
cpp \
1498 $(SRC
)/JSON
/Writer.
cpp \
1499 $(SRC
)/Formatter
/TimeFormatter.
cpp \
1500 $(SRC
)/Computer
/CirclingComputer.
cpp \
1501 $(ENGINE_SRC_DIR
)/Trace
/Point.
cpp \
1502 $(ENGINE_SRC_DIR
)/Trace
/Trace.
cpp \
1503 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
1504 $(TEST_SRC_DIR
)/Printing.
cpp \
1505 $(TEST_SRC_DIR
)/ContestPrinting.
cpp \
1506 $(TEST_SRC_DIR
)/FlightPhaseJSON.
cpp \
1507 $(TEST_SRC_DIR
)/FlightPhaseDetector.
cpp \
1508 $(TEST_SRC_DIR
)/AnalyseFlight.
cpp
1509 ANALYSE_FLIGHT_LDADD
= $(DEBUG_REPLAY_LDADD
)
1510 ANALYSE_FLIGHT_DEPENDS
= CONTEST UTIL GEO MATH TIME
1511 $(eval
$(call link-program
,AnalyseFlight
,ANALYSE_FLIGHT
))
1513 FLIGHT_PATH_SOURCES
= \
1514 $(DEBUG_REPLAY_SOURCES
) \
1515 $(SRC
)/IGC
/IGCParser.
cpp \
1516 $(SRC
)/NMEA
/Aircraft.
cpp \
1517 $(ENGINE_SRC_DIR
)/GlideSolvers
/GlideSettings.
cpp \
1518 $(ENGINE_SRC_DIR
)/Trace
/Point.
cpp \
1519 $(ENGINE_SRC_DIR
)/Trace
/Trace.
cpp \
1520 $(TEST_SRC_DIR
)/Printing.
cpp \
1521 $(TEST_SRC_DIR
)/FlightPath.
cpp
1522 FLIGHT_PATH_LDADD
= $(DEBUG_REPLAY_LDADD
)
1523 FLIGHT_PATH_DEPENDS
= UTIL GEO MATH TIME
1524 $(eval
$(call link-program
,FlightPath
,FLIGHT_PATH
))
1526 VIEW_IMAGE_SOURCES
= \
1527 $(SRC
)/Hardware
/Display.
cpp \
1528 $(SRC
)/Screen
/Layout.
cpp \
1529 $(SRC
)/Compatibility
/fmode.c \
1530 $(SRC
)/ResourceLoader.
cpp \
1531 $(TEST_SRC_DIR
)/Fonts.
cpp \
1532 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1533 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1534 $(TEST_SRC_DIR
)/ViewImage.
cpp
1535 VIEW_IMAGE_LDADD
= $(FAKE_LIBS
)
1536 VIEW_IMAGE_DEPENDS
= SCREEN EVENT OS THREAD MATH UTIL
1537 $(eval
$(call link-program
,ViewImage
,VIEW_IMAGE
))
1539 RUN_CANVAS_SOURCES
= \
1540 $(SRC
)/Hardware
/Display.
cpp \
1541 $(SRC
)/Screen
/Layout.
cpp \
1542 $(SRC
)/Compatibility
/fmode.c \
1543 $(SRC
)/ResourceLoader.
cpp \
1544 $(TEST_SRC_DIR
)/Fonts.
cpp \
1545 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1546 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1547 $(TEST_SRC_DIR
)/RunCanvas.
cpp
1548 RUN_CANVAS_LDADD
= $(FAKE_LIBS
)
1549 RUN_CANVAS_DEPENDS
= SCREEN EVENT OS THREAD MATH UTIL
1550 $(eval
$(call link-program
,RunCanvas
,RUN_CANVAS
))
1552 RUN_MAP_WINDOW_SOURCES
= \
1553 $(CONTEST_SRC_DIR
)/Settings.
cpp \
1554 $(SRC
)/Engine
/Util
/Gradient.
cpp \
1555 $(SRC
)/Engine
/Trace
/Point.
cpp \
1556 $(SRC
)/Engine
/Trace
/Trace.
cpp \
1557 $(SRC
)/Engine
/Trace
/Vector.
cpp \
1558 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
1559 $(IO_SRC_DIR
)/DataFile.
cpp \
1560 $(IO_SRC_DIR
)/ConfiguredFile.
cpp \
1561 $(SRC
)/NMEA
/Info.
cpp \
1562 $(SRC
)/NMEA
/MoreData.
cpp \
1563 $(SRC
)/NMEA
/Acceleration.
cpp \
1564 $(SRC
)/NMEA
/Attitude.
cpp \
1565 $(SRC
)/NMEA
/ExternalSettings.
cpp \
1566 $(SRC
)/NMEA
/ThermalLocator.
cpp \
1567 $(SRC
)/NMEA
/Aircraft.
cpp \
1568 $(SRC
)/NMEA
/FlyingState.
cpp \
1569 $(SRC
)/NMEA
/Derived.
cpp \
1570 $(SRC
)/NMEA
/VarioInfo.
cpp \
1571 $(SRC
)/NMEA
/ClimbInfo.
cpp \
1572 $(SRC
)/NMEA
/ClimbHistory.
cpp \
1573 $(SRC
)/NMEA
/CirclingInfo.
cpp \
1574 $(SRC
)/NMEA
/SwitchState.
cpp \
1575 $(SRC
)/NMEA
/ThermalBand.
cpp \
1576 $(SRC
)/Engine
/Navigation
/TraceHistory.
cpp \
1577 $(SRC
)/FLARM
/FlarmId.
cpp \
1578 $(SRC
)/FLARM
/Friends.
cpp \
1579 $(SRC
)/FLARM
/List.
cpp \
1580 $(SRC
)/FLARM
/Global.
cpp \
1581 $(SRC
)/Airspace
/ProtectedAirspaceWarningManager.
cpp \
1582 $(SRC
)/Airspace
/AirspaceParser.
cpp \
1583 $(SRC
)/Airspace
/AirspaceVisibility.
cpp \
1584 $(SRC
)/Airspace
/AirspaceComputerSettings.
cpp \
1585 $(SRC
)/Renderer
/AirspaceRendererSettings.
cpp \
1586 $(SRC
)/Renderer
/BackgroundRenderer.
cpp \
1587 $(SRC
)/Renderer
/MarkerRenderer.
cpp \
1588 $(SRC
)/LocalPath.
cpp \
1589 $(SRC
)/Projection
/Projection.
cpp \
1590 $(SRC
)/Projection
/WindowProjection.
cpp \
1591 $(SRC
)/Projection
/CompareProjection.
cpp \
1592 $(SRC
)/MapWindow
/MapWindow.
cpp \
1593 $(SRC
)/MapWindow
/MapWindowBlackboard.
cpp \
1594 $(SRC
)/MapWindow
/MapWindowEvents.
cpp \
1595 $(SRC
)/MapWindow
/MapWindowGlideRange.
cpp \
1596 $(SRC
)/Projection
/MapWindowProjection.
cpp \
1597 $(SRC
)/MapWindow
/MapWindowRender.
cpp \
1598 $(SRC
)/MapWindow
/MapWindowSymbols.
cpp \
1599 $(SRC
)/MapWindow
/MapWindowContest.
cpp \
1600 $(SRC
)/MapWindow
/MapWindowTask.
cpp \
1601 $(SRC
)/MapWindow
/MapWindowThermal.
cpp \
1602 $(SRC
)/MapWindow
/MapWindowTraffic.
cpp \
1603 $(SRC
)/MapWindow
/MapWindowTrail.
cpp \
1604 $(SRC
)/MapWindow
/MapWindowWaypoints.
cpp \
1605 $(SRC
)/MapWindow
/MapCanvas.
cpp \
1606 $(SRC
)/MapWindow
/MapDrawHelper.
cpp \
1607 $(SRC
)/Renderer
/FAITriangleAreaRenderer.
cpp \
1608 $(SRC
)/Renderer
/OZRenderer.
cpp \
1609 $(SRC
)/Renderer
/TaskRenderer.
cpp \
1610 $(SRC
)/Renderer
/TaskPointRenderer.
cpp \
1611 $(SRC
)/Renderer
/AircraftRenderer.
cpp \
1612 $(SRC
)/Renderer
/AirspaceRenderer.
cpp \
1613 $(SRC
)/Renderer
/BestCruiseArrowRenderer.
cpp \
1614 $(SRC
)/Renderer
/CompassRenderer.
cpp \
1615 $(SRC
)/Renderer
/FinalGlideBarRenderer.
cpp \
1616 $(SRC
)/Renderer
/TrackLineRenderer.
cpp \
1617 $(SRC
)/Renderer
/TrafficRenderer.
cpp \
1618 $(SRC
)/Renderer
/TrailRenderer.
cpp \
1619 $(SRC
)/Renderer
/WaypointIconRenderer.
cpp \
1620 $(SRC
)/Renderer
/WaypointRenderer.
cpp \
1621 $(SRC
)/Renderer
/WaypointRendererSettings.
cpp \
1622 $(SRC
)/Renderer
/WaypointLabelList.
cpp \
1623 $(SRC
)/Renderer
/WindArrowRenderer.
cpp \
1624 $(SRC
)/Markers
/Markers.
cpp \
1625 $(SRC
)/Markers
/ProtectedMarkers.
cpp \
1626 $(SRC
)/Math
/Screen.
cpp \
1627 $(SRC
)/Hardware
/Display.
cpp \
1628 $(SRC
)/Renderer
/LabelBlock.
cpp \
1629 $(SRC
)/Look
/Fonts.
cpp \
1630 $(SRC
)/Renderer
/TextInBox.
cpp \
1631 $(SRC
)/Screen
/Layout.
cpp \
1632 $(SRC
)/Screen
/Ramp.
cpp \
1633 $(SRC
)/Screen
/UnitSymbol.
cpp \
1634 $(SRC
)/Look
/MapLook.
cpp \
1635 $(SRC
)/Look
/WindArrowLook.
cpp \
1636 $(SRC
)/Look
/WaypointLook.
cpp \
1637 $(SRC
)/Look
/AirspaceLook.
cpp \
1638 $(SRC
)/Look
/TrailLook.
cpp \
1639 $(SRC
)/Look
/TaskLook.
cpp \
1640 $(SRC
)/Look
/AircraftLook.
cpp \
1641 $(SRC
)/Look
/TrafficLook.
cpp \
1642 $(SRC
)/Look
/MarkerLook.
cpp \
1643 $(SRC
)/Look
/NOAALook.
cpp \
1644 $(SRC
)/ResourceLoader.
cpp \
1645 $(SRC
)/MapSettings.
cpp \
1646 $(SRC
)/ComputerSettings.
cpp \
1647 $(SRC
)/TeamCodeSettings.
cpp \
1648 $(SRC
)/Logger
/Settings.
cpp \
1649 $(SRC
)/Tracking
/TrackingSettings.
cpp \
1650 $(SRC
)/Computer
/TraceComputer.
cpp \
1651 $(SRC
)/IGC
/IGCParser.
cpp \
1652 $(SRC
)/Task
/Serialiser.
cpp \
1653 $(SRC
)/Task
/Deserialiser.
cpp \
1654 $(SRC
)/Task
/TaskFile.
cpp \
1655 $(SRC
)/Task
/TaskFileXCSoar.
cpp \
1656 $(SRC
)/Task
/TaskFileIGC.
cpp \
1657 $(SRC
)/Task
/TaskFileSeeYou.
cpp \
1658 $(SRC
)/Task
/ProtectedTaskManager.
cpp \
1659 $(SRC
)/Task
/ProtectedRoutePlanner.
cpp \
1660 $(SRC
)/Task
/RoutePlannerGlue.
cpp \
1661 $(SRC
)/Topography
/TopographyFile.
cpp \
1662 $(SRC
)/Topography
/TopographyStore.
cpp \
1663 $(SRC
)/Topography
/TopographyFileRenderer.
cpp \
1664 $(SRC
)/Topography
/TopographyRenderer.
cpp \
1665 $(SRC
)/Topography
/TopographyGlue.
cpp \
1666 $(SRC
)/Topography
/XShape.
cpp \
1667 $(SRC
)/Units
/Units.
cpp \
1668 $(SRC
)/Units
/Settings.
cpp \
1669 $(SRC
)/Units
/Descriptor.
cpp \
1670 $(SRC
)/Units
/System.
cpp \
1671 $(SRC
)/Formatter
/Units.
cpp \
1672 $(SRC
)/Formatter
/UserUnits.
cpp \
1673 $(SRC
)/Formatter
/HexColor.
cpp \
1674 $(SRC
)/Profile
/Profile.
cpp \
1675 $(SRC
)/Profile
/ProfileKeys.
cpp \
1676 $(SRC
)/Profile
/Earth.
cpp \
1677 $(SRC
)/Profile
/ComputerProfile.
cpp \
1678 $(SRC
)/Profile
/TaskProfile.
cpp \
1679 $(SRC
)/Profile
/RouteProfile.
cpp \
1680 $(SRC
)/Profile
/ContestProfile.
cpp \
1681 $(SRC
)/Profile
/AirspaceConfig.
cpp \
1682 $(SRC
)/Profile
/TrackingProfile.
cpp \
1683 $(SRC
)/Profile
/MapProfile.
cpp \
1684 $(SRC
)/Profile
/TerrainConfig.
cpp \
1685 $(SRC
)/Profile
/Screen.
cpp \
1686 $(SRC
)/Profile
/FlarmProfile.
cpp \
1687 $(SRC
)/Waypoint
/HomeGlue.
cpp \
1688 $(SRC
)/Waypoint
/LastUsed.
cpp \
1689 $(SRC
)/Waypoint
/WaypointFileType.
cpp \
1690 $(SRC
)/Waypoint
/WaypointGlue.
cpp \
1691 $(SRC
)/Waypoint
/WaypointReader.
cpp \
1692 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
1693 $(SRC
)/Waypoint
/WaypointReaderOzi.
cpp \
1694 $(SRC
)/Waypoint
/WaypointReaderFS.
cpp \
1695 $(SRC
)/Waypoint
/WaypointReaderWinPilot.
cpp \
1696 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
1697 $(SRC
)/Waypoint
/WaypointReaderZander.
cpp \
1698 $(SRC
)/Waypoint
/WaypointReaderCompeGPS.
cpp \
1699 $(SRC
)/Waypoint
/WaypointWriter.
cpp \
1700 $(SRC
)/Compatibility
/fmode.c \
1701 $(SRC
)/XML
/Node.
cpp \
1702 $(SRC
)/XML
/Parser.
cpp \
1703 $(SRC
)/XML
/Writer.
cpp \
1704 $(SRC
)/XML
/DataNode.
cpp \
1705 $(SRC
)/XML
/DataNodeXML.
cpp \
1706 $(SRC
)/Operation
/Operation.
cpp \
1707 $(SRC
)/RadioFrequency.
cpp \
1708 $(SRC
)/Atmosphere
/Pressure.
cpp \
1709 $(SRC
)/Atmosphere
/AirDensity.
cpp \
1710 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1711 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1712 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1713 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1714 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1715 $(TEST_SRC_DIR
)/FakeProfileGlue.
cpp \
1716 $(TEST_SRC_DIR
)/RunMapWindow.
cpp
1718 ifeq ($(HAVE_HTTP
),y
)
1719 RUN_MAP_WINDOW_SOURCES
+= \
1720 $(SRC
)/Weather
/NOAAGlue.
cpp \
1721 $(SRC
)/Weather
/NOAAStore.
cpp
1724 RUN_MAP_WINDOW_LDADD
= $(RESOURCE_BINARY
)
1725 RUN_MAP_WINDOW_DEPENDS
= PROFILE TERRAIN SCREEN EVENT SHAPELIB IO OS THREAD TASK ROUTE GLIDE WAYPOINT AIRSPACE JASPER ZZIP UTIL GEO MATH TIME
1726 $(eval
$(call link-program
,RunMapWindow
,RUN_MAP_WINDOW
))
1728 RUN_DIALOG_SOURCES
= \
1729 $(SRC
)/Look
/DialogLook.
cpp \
1730 $(SRC
)/Look
/ButtonLook.
cpp \
1731 $(SRC
)/XML
/Node.
cpp \
1732 $(SRC
)/XML
/Parser.
cpp \
1733 $(SRC
)/Dialogs
/XML.
cpp \
1734 $(SRC
)/Dialogs
/Inflate.
cpp \
1735 $(SRC
)/Dialogs
/DialogSettings.
cpp \
1736 $(SRC
)/Formatter
/HexColor.
cpp \
1737 $(SRC
)/Formatter
/TimeFormatter.
cpp \
1738 $(SRC
)/Hardware
/Display.
cpp \
1739 $(SRC
)/Screen
/Layout.
cpp \
1740 $(SRC
)/ResourceLoader.
cpp \
1741 $(SRC
)/Dialogs
/HelpDialog.
cpp \
1742 $(SRC
)/Dialogs
/WidgetDialog.
cpp \
1743 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1744 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1745 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
1746 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
1747 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1748 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
1749 $(TEST_SRC_DIR
)/Fonts.
cpp \
1750 $(TEST_SRC_DIR
)/RunDialog.
cpp \
1751 $(SRC
)/Compatibility
/fmode.c
1752 RUN_DIALOG_LDADD
= \
1753 $(RESOURCE_BINARY
) \
1755 RUN_DIALOG_DEPENDS
= IO FORM WIDGET DATA_FIELD SCREEN EVENT OS THREAD MATH ZZIP UTIL TIME
1756 $(eval
$(call link-program
,RunDialog
,RUN_DIALOG
))
1758 RUN_LIST_CONTROL_SOURCES
= \
1759 $(SRC
)/Hardware
/Display.
cpp \
1760 $(SRC
)/Screen
/Layout.
cpp \
1761 $(SRC
)/ResourceLoader.
cpp \
1762 $(SRC
)/Look
/DialogLook.
cpp \
1763 $(SRC
)/Look
/ButtonLook.
cpp \
1764 $(SRC
)/UIUtil
/KineticManager.
cpp \
1765 $(SRC
)/Dialogs
/DialogSettings.
cpp \
1766 $(TEST_SRC_DIR
)/Fonts.
cpp \
1767 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1768 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1769 $(TEST_SRC_DIR
)/RunListControl.
cpp
1770 RUN_LIST_CONTROL_DEPENDS
= FORM SCREEN EVENT OS THREAD MATH UTIL
1771 $(eval
$(call link-program
,RunListControl
,RUN_LIST_CONTROL
))
1773 RUN_TEXT_ENTRY_SOURCES
= \
1774 $(SRC
)/Dialogs
/dlgTextEntry.
cpp \
1775 $(SRC
)/Dialogs
/dlgTextEntry_Keyboard.
cpp \
1776 $(SRC
)/Dialogs
/XML.
cpp \
1777 $(SRC
)/Dialogs
/Inflate.
cpp \
1778 $(SRC
)/Dialogs
/DialogSettings.
cpp \
1779 $(SRC
)/UIUtil
/KineticManager.
cpp \
1780 $(SRC
)/Hardware
/Display.
cpp \
1781 $(SRC
)/Screen
/Layout.
cpp \
1782 $(SRC
)/ResourceLoader.
cpp \
1783 $(SRC
)/Look
/DialogLook.
cpp \
1784 $(SRC
)/Look
/ButtonLook.
cpp \
1785 $(SRC
)/XML
/Node.
cpp \
1786 $(SRC
)/XML
/Parser.
cpp \
1787 $(SRC
)/Formatter
/HexColor.
cpp \
1788 $(SRC
)/Formatter
/TimeFormatter.
cpp \
1789 $(TEST_SRC_DIR
)/Fonts.
cpp \
1790 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1791 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1792 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1793 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
1794 $(TEST_SRC_DIR
)/FakeHelpDialog.
cpp \
1795 $(TEST_SRC_DIR
)/RunTextEntry.
cpp
1796 RUN_TEXT_ENTRY_LDADD
= $(RESOURCE_BINARY
)
1797 RUN_TEXT_ENTRY_DEPENDS
= FORM WIDGET DATA_FIELD SCREEN EVENT IO OS THREAD MATH UTIL ZLIB TIME
1798 $(eval
$(call link-program
,RunTextEntry
,RUN_TEXT_ENTRY
))
1800 RUN_NUMBER_ENTRY_SOURCES
= \
1801 $(SRC
)/Dialogs
/NumberEntry.
cpp \
1802 $(SRC
)/Dialogs
/DialogSettings.
cpp \
1803 $(SRC
)/Dialogs
/WidgetDialog.
cpp \
1804 $(SRC
)/Hardware
/Display.
cpp \
1805 $(SRC
)/Screen
/Layout.
cpp \
1806 $(SRC
)/ResourceLoader.
cpp \
1807 $(SRC
)/Look
/DialogLook.
cpp \
1808 $(SRC
)/Look
/ButtonLook.
cpp \
1809 $(SRC
)/XML
/Node.
cpp \
1810 $(SRC
)/XML
/Parser.
cpp \
1811 $(SRC
)/Units
/Descriptor.
cpp \
1812 $(SRC
)/Formatter
/HexColor.
cpp \
1813 $(TEST_SRC_DIR
)/Fonts.
cpp \
1814 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1815 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1816 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1817 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
1818 $(TEST_SRC_DIR
)/FakeHelpDialog.
cpp \
1819 $(TEST_SRC_DIR
)/RunNumberEntry.
cpp
1820 RUN_NUMBER_ENTRY_LDADD
= $(RESOURCE_BINARY
)
1821 RUN_NUMBER_ENTRY_DEPENDS
= FORM WIDGET DATA_FIELD SCREEN EVENT IO OS THREAD MATH UTIL ZLIB TIME
1822 $(eval
$(call link-program
,RunNumberEntry
,RUN_NUMBER_ENTRY
))
1824 RUN_TIME_ENTRY_SOURCES
= \
1825 $(SRC
)/Dialogs
/TimeEntry.
cpp \
1826 $(SRC
)/Dialogs
/DialogSettings.
cpp \
1827 $(SRC
)/Dialogs
/WidgetDialog.
cpp \
1828 $(SRC
)/Hardware
/Display.
cpp \
1829 $(SRC
)/Screen
/Layout.
cpp \
1830 $(SRC
)/ResourceLoader.
cpp \
1831 $(SRC
)/Look
/DialogLook.
cpp \
1832 $(SRC
)/Look
/ButtonLook.
cpp \
1833 $(SRC
)/Units
/Descriptor.
cpp \
1834 $(SRC
)/Formatter
/HexColor.
cpp \
1835 $(TEST_SRC_DIR
)/Fonts.
cpp \
1836 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1837 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1838 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1839 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
1840 $(TEST_SRC_DIR
)/FakeHelpDialog.
cpp \
1841 $(TEST_SRC_DIR
)/RunTimeEntry.
cpp
1842 RUN_TIME_ENTRY_LDADD
= $(RESOURCE_BINARY
)
1843 RUN_TIME_ENTRY_DEPENDS
= FORM WIDGET DATA_FIELD SCREEN EVENT IO OS THREAD MATH UTIL ZLIB TIME
1844 $(eval
$(call link-program
,RunTimeEntry
,RUN_TIME_ENTRY
))
1846 RUN_ANGLE_ENTRY_SOURCES
= \
1847 $(SRC
)/Dialogs
/NumberEntry.
cpp \
1848 $(SRC
)/Dialogs
/DialogSettings.
cpp \
1849 $(SRC
)/Dialogs
/WidgetDialog.
cpp \
1850 $(SRC
)/Hardware
/Display.
cpp \
1851 $(SRC
)/Screen
/Layout.
cpp \
1852 $(SRC
)/ResourceLoader.
cpp \
1853 $(SRC
)/Look
/DialogLook.
cpp \
1854 $(SRC
)/Look
/ButtonLook.
cpp \
1855 $(SRC
)/Units
/Descriptor.
cpp \
1856 $(SRC
)/Formatter
/HexColor.
cpp \
1857 $(TEST_SRC_DIR
)/Fonts.
cpp \
1858 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1859 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1860 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1861 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
1862 $(TEST_SRC_DIR
)/FakeHelpDialog.
cpp \
1863 $(TEST_SRC_DIR
)/RunAngleEntry.
cpp
1864 RUN_ANGLE_ENTRY_LDADD
= $(RESOURCE_BINARY
)
1865 RUN_ANGLE_ENTRY_DEPENDS
= FORM WIDGET DATA_FIELD SCREEN EVENT IO OS THREAD MATH UTIL ZLIB TIME
1866 $(eval
$(call link-program
,RunAngleEntry
,RUN_ANGLE_ENTRY
))
1868 RUN_TERMINAL_SOURCES
= \
1869 $(SRC
)/Hardware
/Display.
cpp \
1870 $(SRC
)/Screen
/Layout.
cpp \
1871 $(SRC
)/Screen
/TerminalWindow.
cpp \
1872 $(SRC
)/Look
/TerminalLook.
cpp \
1873 $(SRC
)/ResourceLoader.
cpp \
1874 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1875 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1876 $(TEST_SRC_DIR
)/Fonts.
cpp \
1877 $(TEST_SRC_DIR
)/RunTerminal.
cpp
1878 RUN_TERMINAL_DEPENDS
= SCREEN EVENT OS THREAD MATH UTIL
1879 $(eval
$(call link-program
,RunTerminal
,RUN_TERMINAL
))
1881 RUN_RENDER_OZ_SOURCES
= \
1882 $(SRC
)/Renderer
/OZRenderer.
cpp \
1883 $(SRC
)/Look
/DialogLook.
cpp \
1884 $(SRC
)/Look
/ButtonLook.
cpp \
1885 $(SRC
)/Look
/AirspaceLook.
cpp \
1886 $(SRC
)/Hardware
/Display.
cpp \
1887 $(SRC
)/Screen
/Layout.
cpp \
1888 $(SRC
)/Look
/TaskLook.
cpp \
1889 $(SRC
)/Projection
/Projection.
cpp \
1890 $(SRC
)/ResourceLoader.
cpp \
1891 $(SRC
)/Renderer
/AirspaceRendererSettings.
cpp \
1892 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1893 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1894 $(TEST_SRC_DIR
)/Fonts.
cpp \
1895 $(TEST_SRC_DIR
)/RunRenderOZ.
cpp
1896 RUN_RENDER_OZ_LDADD
= $(RESOURCE_BINARY
)
1897 RUN_RENDER_OZ_DEPENDS
= TASK FORM SCREEN EVENT OS THREAD GEO MATH UTIL
1898 $(eval
$(call link-program
,RunRenderOZ
,RUN_RENDER_OZ
))
1900 RUN_CHART_RENDERER_SOURCES
= \
1901 $(SRC
)/Look
/DialogLook.
cpp \
1902 $(SRC
)/Look
/ButtonLook.
cpp \
1903 $(SRC
)/Look
/ChartLook.
cpp \
1904 $(SRC
)/Hardware
/Display.
cpp \
1905 $(SRC
)/Screen
/Layout.
cpp \
1906 $(SRC
)/ResourceLoader.
cpp \
1907 $(SRC
)/Renderer
/ChartRenderer.
cpp \
1908 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1909 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1910 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
1911 $(TEST_SRC_DIR
)/Fonts.
cpp \
1912 $(TEST_SRC_DIR
)/RunChartRenderer.
cpp
1913 RUN_CHART_RENDERER_LDADD
= $(RESOURCE_BINARY
)
1914 RUN_CHART_RENDERER_DEPENDS
= FORM SCREEN EVENT OS THREAD MATH UTIL
1915 $(eval
$(call link-program
,RunChartRenderer
,RUN_CHART_RENDERER
))
1917 RUN_WIND_ARROW_RENDERER_SOURCES
= \
1918 $(SRC
)/Math
/Screen.
cpp \
1919 $(SRC
)/Hardware
/Display.
cpp \
1920 $(SRC
)/Screen
/Layout.
cpp \
1921 $(SRC
)/Renderer
/LabelBlock.
cpp \
1922 $(SRC
)/Renderer
/TextInBox.
cpp \
1923 $(SRC
)/Look
/WindArrowLook.
cpp \
1924 $(SRC
)/ResourceLoader.
cpp \
1925 $(SRC
)/Units
/Units.
cpp \
1926 $(SRC
)/Units
/Settings.
cpp \
1927 $(SRC
)/Units
/Descriptor.
cpp \
1928 $(SRC
)/Units
/System.
cpp \
1929 $(SRC
)/Renderer
/WindArrowRenderer.
cpp \
1930 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1931 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1932 $(TEST_SRC_DIR
)/Fonts.
cpp \
1933 $(TEST_SRC_DIR
)/RunWindArrowRenderer.
cpp
1934 RUN_WIND_ARROW_RENDERER_LDADD
= $(RESOURCE_BINARY
)
1935 RUN_WIND_ARROW_RENDERER_DEPENDS
= FORM SCREEN EVENT OS THREAD MATH UTIL
1936 $(eval
$(call link-program
,RunWindArrowRenderer
,RUN_WIND_ARROW_RENDERER
))
1938 RUN_HORIZON_RENDERER_SOURCES
= \
1939 $(SRC
)/Math
/Screen.
cpp \
1940 $(SRC
)/Hardware
/Display.
cpp \
1941 $(SRC
)/Screen
/Layout.
cpp \
1942 $(SRC
)/Look
/HorizonLook.
cpp \
1943 $(SRC
)/ResourceLoader.
cpp \
1944 $(SRC
)/Renderer
/HorizonRenderer.
cpp \
1945 $(TEST_SRC_DIR
)/Fonts.
cpp \
1946 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1947 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1948 $(TEST_SRC_DIR
)/RunHorizonRenderer.
cpp
1949 RUN_HORIZON_RENDERER_LDADD
= $(RESOURCE_BINARY
)
1950 RUN_HORIZON_RENDERER_DEPENDS
= FORM SCREEN EVENT OS THREAD MATH UTIL
1951 $(eval
$(call link-program
,RunHorizonRenderer
,RUN_HORIZON_RENDERER
))
1953 RUN_FINAL_GLIDE_BAR_RENDERER_SOURCES
= \
1954 $(SRC
)/Math
/Screen.
cpp \
1955 $(SRC
)/Hardware
/Display.
cpp \
1956 $(SRC
)/Screen
/Layout.
cpp \
1957 $(SRC
)/Renderer
/LabelBlock.
cpp \
1958 $(SRC
)/Renderer
/TextInBox.
cpp \
1959 $(SRC
)/Look
/FinalGlideBarLook.
cpp \
1960 $(SRC
)/Look
/TaskLook.
cpp \
1961 $(SRC
)/ResourceLoader.
cpp \
1962 $(SRC
)/Units
/Units.
cpp \
1963 $(SRC
)/Units
/Settings.
cpp \
1964 $(SRC
)/Units
/Descriptor.
cpp \
1965 $(SRC
)/Units
/System.
cpp \
1966 $(SRC
)/Formatter
/Units.
cpp \
1967 $(SRC
)/Formatter
/UserUnits.
cpp \
1968 $(SRC
)/Renderer
/FinalGlideBarRenderer.
cpp \
1969 $(SRC
)/NMEA
/Derived.
cpp \
1970 $(SRC
)/NMEA
/VarioInfo.
cpp \
1971 $(SRC
)/NMEA
/CirclingInfo.
cpp \
1972 $(SRC
)/NMEA
/ClimbHistory.
cpp \
1973 $(SRC
)/NMEA
/ThermalBand.
cpp \
1974 $(SRC
)/NMEA
/ClimbInfo.
cpp \
1975 $(SRC
)/NMEA
/ThermalLocator.
cpp \
1976 $(SRC
)/NMEA
/FlyingState.
cpp \
1977 $(SRC
)/Engine
/Navigation
/TraceHistory.
cpp \
1978 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1979 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1980 $(TEST_SRC_DIR
)/Fonts.
cpp \
1981 $(TEST_SRC_DIR
)/RunFinalGlideBarRenderer.
cpp
1982 RUN_FINAL_GLIDE_BAR_RENDERER_LDADD
= $(RESOURCE_BINARY
)
1983 RUN_FINAL_GLIDE_BAR_RENDERER_DEPENDS
= FORM SCREEN EVENT OS THREAD TASK GLIDE GEO MATH UTIL
1984 $(eval
$(call link-program
,RunFinalGlideBarRenderer
,RUN_FINAL_GLIDE_BAR_RENDERER
))
1986 RUN_FAI_TRIANGLE_SECTOR_RENDERER_SOURCES
= \
1987 $(SRC
)/Math
/Screen.
cpp \
1988 $(SRC
)/Hardware
/Display.
cpp \
1989 $(SRC
)/Screen
/Layout.
cpp \
1990 $(SRC
)/Renderer
/FAITriangleAreaRenderer.
cpp \
1991 $(SRC
)/Projection
/Projection.
cpp \
1992 $(SRC
)/Projection
/WindowProjection.
cpp \
1993 $(SRC
)/ResourceLoader.
cpp \
1994 $(ENGINE_SRC_DIR
)/Task
/Shapes
/FAITriangleArea.
cpp \
1995 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
1996 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
1997 $(TEST_SRC_DIR
)/Fonts.
cpp \
1998 $(TEST_SRC_DIR
)/RunFAITriangleSectorRenderer.
cpp
1999 RUN_FAI_TRIANGLE_SECTOR_RENDERER_LDADD
= $(RESOURCE_BINARY
)
2000 RUN_FAI_TRIANGLE_SECTOR_RENDERER_DEPENDS
= FORM SCREEN EVENT OS THREAD GEO MATH UTIL
2001 $(eval
$(call link-program
,RunFAITriangleSectorRenderer
,RUN_FAI_TRIANGLE_SECTOR_RENDERER
))
2003 RUN_PROGRESS_WINDOW_SOURCES
= \
2004 $(SRC
)/Version.
cpp \
2005 $(SRC
)/Hardware
/Display.
cpp \
2006 $(SRC
)/ProgressWindow.
cpp \
2007 $(SRC
)/Screen
/Layout.
cpp \
2008 $(SRC
)/Gauge
/LogoView.
cpp \
2009 $(SRC
)/ResourceLoader.
cpp \
2010 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
2011 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
2012 $(TEST_SRC_DIR
)/Fonts.
cpp \
2013 $(TEST_SRC_DIR
)/RunProgressWindow.
cpp
2014 RUN_PROGRESS_WINDOW_LDADD
= $(RESOURCE_BINARY
)
2015 RUN_PROGRESS_WINDOW_DEPENDS
= SCREEN EVENT OS THREAD MATH UTIL
2016 $(eval
$(call link-program
,RunProgressWindow
,RUN_PROGRESS_WINDOW
))
2018 RUN_JOB_DIALOG_SOURCES
= \
2019 $(SRC
)/Version.
cpp \
2020 $(SRC
)/Operation
/Operation.
cpp \
2021 $(SRC
)/Operation
/ThreadedOperationEnvironment.
cpp \
2022 $(SRC
)/Job
/Thread.
cpp \
2023 $(SRC
)/Hardware
/Display.
cpp \
2024 $(SRC
)/ProgressWindow.
cpp \
2025 $(SRC
)/Screen
/Layout.
cpp \
2026 $(SRC
)/Look
/DialogLook.
cpp \
2027 $(SRC
)/Look
/ButtonLook.
cpp \
2028 $(SRC
)/Gauge
/LogoView.
cpp \
2029 $(SRC
)/ResourceLoader.
cpp \
2030 $(SRC
)/Dialogs
/JobDialog.
cpp \
2031 $(SRC
)/Dialogs
/DialogSettings.
cpp \
2032 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
2033 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
2034 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
2035 $(TEST_SRC_DIR
)/Fonts.
cpp \
2036 $(TEST_SRC_DIR
)/RunJobDialog.
cpp
2037 RUN_JOB_DIALOG_LDADD
= $(RESOURCE_BINARY
)
2038 RUN_JOB_DIALOG_DEPENDS
= THREAD FORM SCREEN EVENT OS MATH UTIL
2039 $(eval
$(call link-program
,RunJobDialog
,RUN_JOB_DIALOG
))
2041 RUN_ANALYSIS_SOURCES
= \
2042 $(DEBUG_REPLAY_SOURCES
) \
2043 $(SRC
)/Engine
/Util
/Gradient.
cpp \
2044 $(SRC
)/Engine
/Trace
/Point.
cpp \
2045 $(SRC
)/Engine
/Trace
/Trace.
cpp \
2046 $(SRC
)/Engine
/Trace
/Vector.
cpp \
2047 $(SRC
)/NMEA
/Aircraft.
cpp \
2048 $(SRC
)/UIUtil
/GestureManager.
cpp \
2049 $(SRC
)/Task
/Serialiser.
cpp \
2050 $(SRC
)/Task
/Deserialiser.
cpp \
2051 $(SRC
)/Task
/ProtectedTaskManager.
cpp \
2052 $(SRC
)/Task
/ProtectedRoutePlanner.
cpp \
2053 $(SRC
)/Task
/RoutePlannerGlue.
cpp \
2054 $(SRC
)/Task
/TaskFile.
cpp \
2055 $(SRC
)/Task
/TaskFileXCSoar.
cpp \
2056 $(SRC
)/Task
/TaskFileSeeYou.
cpp \
2057 $(SRC
)/Task
/TaskFileIGC.
cpp \
2058 $(SRC
)/Task
/Serialiser.
cpp \
2059 $(SRC
)/Task
/Deserialiser.
cpp \
2060 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
2061 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
2062 $(SRC
)/RadioFrequency.
cpp \
2063 $(SRC
)/Math
/Screen.
cpp \
2064 $(SRC
)/Atmosphere
/CuSonde.
cpp \
2065 $(SRC
)/Wind
/CirclingWind.
cpp \
2066 $(SRC
)/Wind
/WindStore.
cpp \
2067 $(SRC
)/Wind
/WindMeasurementList.
cpp \
2068 $(SRC
)/Wind
/WindEKF.
cpp \
2069 $(SRC
)/Wind
/WindEKFGlue.
cpp \
2070 $(SRC
)/Projection
/Projection.
cpp \
2071 $(SRC
)/Projection
/WindowProjection.
cpp \
2072 $(SRC
)/Projection
/MapWindowProjection.
cpp \
2073 $(SRC
)/Projection
/ChartProjection.
cpp \
2074 $(SRC
)/Renderer
/ChartRenderer.
cpp \
2075 $(SRC
)/Renderer
/TaskRenderer.
cpp \
2076 $(SRC
)/Renderer
/TaskPointRenderer.
cpp \
2077 $(SRC
)/Renderer
/OZRenderer.
cpp \
2078 $(SRC
)/Renderer
/AircraftRenderer.
cpp \
2079 $(SRC
)/Renderer
/TrailRenderer.
cpp \
2080 $(SRC
)/MapWindow
/MapCanvas.
cpp \
2081 $(SRC
)/Units
/Units.
cpp \
2082 $(SRC
)/Units
/Settings.
cpp \
2083 $(SRC
)/Formatter
/Units.
cpp \
2084 $(SRC
)/Formatter
/UserUnits.
cpp \
2085 $(SRC
)/Formatter
/HexColor.
cpp \
2086 $(SRC
)/Formatter
/TimeFormatter.
cpp \
2087 $(SRC
)/ResourceLoader.
cpp \
2088 $(SRC
)/LocalPath.
cpp \
2089 $(SRC
)/Hardware
/Display.
cpp \
2090 $(SRC
)/Screen
/Layout.
cpp \
2091 $(SRC
)/Screen
/Ramp.
cpp \
2092 $(SRC
)/Screen
/UnitSymbol.
cpp \
2093 $(SRC
)/Look
/Look.
cpp \
2094 $(SRC
)/Look
/UnitsLook.
cpp \
2095 $(SRC
)/Look
/IconLook.
cpp \
2096 $(SRC
)/Look
/MapLook.
cpp \
2097 $(SRC
)/Look
/WindArrowLook.
cpp \
2098 $(SRC
)/Look
/VarioLook.
cpp \
2099 $(SRC
)/Look
/ChartLook.
cpp \
2100 $(SRC
)/Look
/ThermalBandLook.
cpp \
2101 $(SRC
)/Look
/TraceHistoryLook.
cpp \
2102 $(SRC
)/Look
/CrossSectionLook.
cpp \
2103 $(SRC
)/Look
/HorizonLook.
cpp \
2104 $(SRC
)/Look
/WaypointLook.
cpp \
2105 $(SRC
)/Look
/AirspaceLook.
cpp \
2106 $(SRC
)/Look
/TaskLook.
cpp \
2107 $(SRC
)/Look
/AircraftLook.
cpp \
2108 $(SRC
)/Look
/TrafficLook.
cpp \
2109 $(SRC
)/Look
/GestureLook.
cpp \
2110 $(SRC
)/Look
/InfoBoxLook.
cpp \
2111 $(SRC
)/Look
/MarkerLook.
cpp \
2112 $(SRC
)/Look
/NOAALook.
cpp \
2113 $(SRC
)/Look
/TerminalLook.
cpp \
2114 $(SRC
)/Look
/TrailLook.
cpp \
2115 $(SRC
)/Look
/FinalGlideBarLook.
cpp \
2116 $(SRC
)/Look
/FlarmTrafficLook.
cpp \
2117 $(SRC
)/Look
/ThermalAssistantLook.
cpp \
2118 $(SRC
)/Profile
/Profile.
cpp \
2119 $(SRC
)/Profile
/ProfileKeys.
cpp \
2120 $(SRC
)/Profile
/FontConfig.
cpp \
2121 $(SRC
)/XML
/Node.
cpp \
2122 $(SRC
)/XML
/Parser.
cpp \
2123 $(SRC
)/XML
/Writer.
cpp \
2124 $(SRC
)/XML
/DataNode.
cpp \
2125 $(SRC
)/XML
/DataNodeXML.
cpp \
2126 $(SRC
)/Dialogs
/XML.
cpp \
2127 $(SRC
)/Dialogs
/Inflate.
cpp \
2128 $(SRC
)/Dialogs
/dlgAnalysis.
cpp \
2129 $(SRC
)/Dialogs
/DialogSettings.
cpp \
2130 $(SRC
)/Look
/DialogLook.
cpp \
2131 $(SRC
)/Look
/ButtonLook.
cpp \
2132 $(SRC
)/CrossSection
/AirspaceXSRenderer.
cpp \
2133 $(SRC
)/CrossSection
/TerrainXSRenderer.
cpp \
2134 $(SRC
)/CrossSection
/CrossSectionRenderer.
cpp \
2135 $(SRC
)/CrossSection
/CrossSectionWindow.
cpp \
2136 $(SRC
)/FlightStatistics.
cpp \
2137 $(SRC
)/Renderer
/AirspacePreviewRenderer.
cpp \
2138 $(SRC
)/Renderer
/FlightStatisticsRenderer.
cpp \
2139 $(SRC
)/Renderer
/BarographRenderer.
cpp \
2140 $(SRC
)/Renderer
/ClimbChartRenderer.
cpp \
2141 $(SRC
)/Renderer
/GlidePolarRenderer.
cpp \
2142 $(SRC
)/Renderer
/ThermalBandRenderer.
cpp \
2143 $(SRC
)/Renderer
/WindChartRenderer.
cpp \
2144 $(SRC
)/Renderer
/CuRenderer.
cpp \
2145 $(SRC
)/Computer
/ThermalLocator.
cpp \
2146 $(SRC
)/Computer
/ThermalBase.
cpp \
2147 $(SRC
)/Computer
/ThermalBandComputer.
cpp \
2148 $(SRC
)/Computer
/GlideRatioCalculator.
cpp \
2149 $(SRC
)/Computer
/AutoQNH.
cpp \
2150 $(SRC
)/Computer
/CirclingComputer.
cpp \
2151 $(SRC
)/Computer
/WindComputer.
cpp \
2152 $(SRC
)/Computer
/ContestComputer.
cpp \
2153 $(SRC
)/Computer
/TraceComputer.
cpp \
2154 $(SRC
)/Computer
/WarningComputer.
cpp \
2155 $(SRC
)/Computer
/LiftDatabaseComputer.
cpp \
2156 $(SRC
)/Computer
/AverageVarioComputer.
cpp \
2157 $(SRC
)/Computer
/GlideRatioComputer.
cpp \
2158 $(SRC
)/Computer
/GlideComputer.
cpp \
2159 $(SRC
)/Computer
/GlideComputerBlackboard.
cpp \
2160 $(SRC
)/Computer
/TaskComputer.
cpp \
2161 $(SRC
)/Computer
/RouteComputer.
cpp \
2162 $(SRC
)/Computer
/GlideComputerAirData.
cpp \
2163 $(SRC
)/Computer
/StatsComputer.
cpp \
2164 $(SRC
)/Computer
/GlideComputerInterface.
cpp \
2165 $(SRC
)/Computer
/LogComputer.
cpp \
2166 $(SRC
)/Computer
/CuComputer.
cpp \
2167 $(SRC
)/Audio
/Settings.
cpp \
2168 $(SRC
)/Audio
/VarioSettings.
cpp \
2169 $(SRC
)/UISettings.
cpp \
2170 $(SRC
)/DisplaySettings.
cpp \
2171 $(SRC
)/PageSettings.
cpp \
2172 $(SRC
)/InfoBoxes
/InfoBoxSettings.
cpp \
2173 $(SRC
)/Gauge
/VarioSettings.
cpp \
2174 $(SRC
)/Gauge
/TrafficSettings.
cpp \
2175 $(SRC
)/ComputerSettings.
cpp \
2176 $(SRC
)/TeamCodeSettings.
cpp \
2177 $(SRC
)/Logger
/Settings.
cpp \
2178 $(SRC
)/Tracking
/TrackingSettings.
cpp \
2179 $(SRC
)/IGC
/IGCParser.
cpp \
2180 $(SRC
)/MapSettings.
cpp \
2181 $(SRC
)/Blackboard
/InterfaceBlackboard.
cpp \
2182 $(SRC
)/Audio
/VegaVoice.
cpp \
2183 $(SRC
)/TeamCode.
cpp \
2184 $(SRC
)/Engine
/Navigation
/TraceHistory.
cpp \
2185 $(SRC
)/Airspace
/ProtectedAirspaceWarningManager.
cpp \
2186 $(SRC
)/Airspace
/AirspaceParser.
cpp \
2187 $(SRC
)/Airspace
/AirspaceGlue.
cpp \
2188 $(SRC
)/Airspace
/AirspaceVisibility.
cpp \
2189 $(SRC
)/Airspace
/AirspaceComputerSettings.
cpp \
2190 $(SRC
)/Renderer
/AirspaceRendererSettings.
cpp \
2191 $(SRC
)/Math
/SunEphemeris.
cpp \
2192 $(SRC
)/IO
/ConfiguredFile.
cpp \
2193 $(SRC
)/Operation
/Operation.
cpp \
2194 $(SRC
)/Operation
/ProxyOperationEnvironment.
cpp \
2195 $(SRC
)/Operation
/NoCancelOperationEnvironment.
cpp \
2196 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
2197 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
2198 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
2199 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
2200 $(TEST_SRC_DIR
)/FakeHelpDialog.
cpp \
2201 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
2202 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
2203 $(TEST_SRC_DIR
)/Fonts.
cpp \
2204 $(TEST_SRC_DIR
)/RunAnalysis.
cpp
2205 RUN_ANALYSIS_LDADD
= \
2207 RUN_ANALYSIS_DEPENDS
= TERRAIN DRIVER PROFILE FORM WIDGET SCREEN EVENT IO DATA_FIELD OS THREAD CONTEST TASK ROUTE GLIDE WAYPOINT ROUTE AIRSPACE ZZIP UTIL GEO MATH TIME
2208 $(eval
$(call link-program
,RunAnalysis
,RUN_ANALYSIS
))
2210 RUN_AIRSPACE_WARNING_DIALOG_SOURCES
= \
2211 $(SRC
)/Engine
/Navigation
/Aircraft.
cpp \
2212 $(SRC
)/NMEA
/FlyingState.
cpp \
2213 $(SRC
)/XML
/Node.
cpp \
2214 $(SRC
)/XML
/Parser.
cpp \
2215 $(SRC
)/Airspace
/ProtectedAirspaceWarningManager.
cpp \
2216 $(SRC
)/Units
/Units.
cpp \
2217 $(SRC
)/Units
/Settings.
cpp \
2218 $(SRC
)/Units
/Descriptor.
cpp \
2219 $(SRC
)/Units
/System.
cpp \
2220 $(SRC
)/Formatter
/Units.
cpp \
2221 $(SRC
)/Formatter
/UserUnits.
cpp \
2222 $(SRC
)/Formatter
/TimeFormatter.
cpp \
2223 $(SRC
)/Formatter
/AirspaceFormatter.
cpp \
2224 $(SRC
)/Formatter
/AirspaceUserUnitsFormatter.
cpp \
2225 $(SRC
)/Formatter
/HexColor.
cpp \
2226 $(SRC
)/Look
/DialogLook.
cpp \
2227 $(SRC
)/Look
/ButtonLook.
cpp \
2228 $(SRC
)/Dialogs
/XML.
cpp \
2229 $(SRC
)/Dialogs
/Inflate.
cpp \
2230 $(SRC
)/Dialogs
/Airspace
/dlgAirspaceWarnings.
cpp \
2231 $(SRC
)/Dialogs
/DialogSettings.
cpp \
2232 $(SRC
)/Airspace
/AirspaceParser.
cpp \
2233 $(SRC
)/Audio
/Sound.
cpp \
2234 $(SRC
)/Hardware
/Display.
cpp \
2235 $(SRC
)/Screen
/Layout.
cpp \
2236 $(SRC
)/ResourceLoader.
cpp \
2237 $(SRC
)/Profile
/ProfileKeys.
cpp \
2238 $(SRC
)/Operation
/Operation.
cpp \
2239 $(SRC
)/Atmosphere
/Pressure.
cpp \
2240 $(IO_SRC_DIR
)/ConfiguredFile.
cpp \
2241 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
2242 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
2243 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
2244 $(TEST_SRC_DIR
)/FakeHelpDialog.
cpp \
2245 $(TEST_SRC_DIR
)/FakeListPicker.
cpp \
2246 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
2247 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
2248 $(TEST_SRC_DIR
)/FakeProfile.
cpp \
2249 $(TEST_SRC_DIR
)/FakeProfileGlue.
cpp \
2250 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
2251 $(TEST_SRC_DIR
)/Fonts.
cpp \
2252 $(TEST_SRC_DIR
)/RunAirspaceWarningDialog.
cpp
2253 RUN_AIRSPACE_WARNING_DIALOG_LDADD
= \
2256 RUN_AIRSPACE_WARNING_DIALOG_DEPENDS
= FORM WIDGET DATA_FIELD SCREEN EVENT IO OS THREAD AIRSPACE ZZIP UTIL GEO MATH TIME
2257 $(eval
$(call link-program
,RunAirspaceWarningDialog
,RUN_AIRSPACE_WARNING_DIALOG
))
2259 PLAY_TONE_SOURCES
= \
2260 $(TEST_SRC_DIR
)/PlayTone.
cpp
2261 PLAY_TONE_DEPENDS
= AUDIO MATH SCREEN EVENT OS
2262 $(eval
$(call link-program
,PlayTone
,PLAY_TONE
))
2264 PLAY_VARIO_SOURCES
= \
2265 $(DEBUG_REPLAY_SOURCES
) \
2266 $(TEST_SRC_DIR
)/PlayVario.
cpp
2267 PLAY_VARIO_LDADD
= $(filter-out $(OS_LIBS
),$(DEBUG_REPLAY_LDADD
))
2268 PLAY_VARIO_DEPENDS
= AUDIO GEO MATH SCREEN EVENT UTIL OS TIME
2269 $(eval
$(call link-program
,PlayVario
,PLAY_VARIO
))
2271 DUMP_VARIO_SOURCES
= \
2272 $(DEBUG_REPLAY_SOURCES
) \
2273 $(TEST_SRC_DIR
)/DumpVario.
cpp
2274 DUMP_VARIO_LDADD
= $(DEBUG_REPLAY_LDADD
)
2275 DUMP_VARIO_DEPENDS
= AUDIO GEO MATH SCREEN EVENT UTIL OS TIME
2276 $(eval
$(call link-program
,DumpVario
,DUMP_VARIO
))
2278 RUN_TASK_EDITOR_DIALOG_SOURCES
= \
2279 $(SRC
)/XML
/Node.
cpp \
2280 $(SRC
)/Airspace
/ProtectedAirspaceWarningManager.
cpp \
2281 $(SRC
)/Dialogs
/XML.
cpp \
2282 $(SRC
)/Dialogs
/Inflate.
cpp \
2283 $(SRC
)/Dialogs
/ComboPicker.
cpp \
2284 $(SRC
)/Dialogs
/HelpDialog.
cpp \
2285 $(SRC
)/Dialogs
/dlgTaskOverview.
cpp \
2286 $(SRC
)/Dialogs
/WaypointList.
cpp \
2287 $(SRC
)/Dialogs
/dlgWaypointDetails.
cpp \
2288 $(SRC
)/Dialogs
/dlgTaskWaypoint.
cpp \
2289 $(SRC
)/Math
/SunEphemeris.
cpp \
2290 $(SRC
)/LocalTime.
cpp \
2291 $(SRC
)/Airspace
/AirspaceParser.
cpp \
2292 $(SRC
)/Hardware
/Display.
cpp \
2293 $(SRC
)/Screen
/Layout.
cpp \
2294 $(SRC
)/Look
/Fonts.
cpp \
2295 $(SRC
)/Task
/TaskFile.
cpp \
2296 $(SRC
)/Task
/TaskFileXCSoar.
cpp \
2297 $(SRC
)/Task
/TaskFileIGC.
cpp \
2298 $(SRC
)/Task
/TaskFileSeeYou.
cpp \
2299 $(SRC
)/Task
/ProtectedTaskManager.
cpp \
2300 $(SRC
)/LocalPath.
cpp \
2301 $(SRC
)/UtilsFont.
cpp \
2302 $(SRC
)/Units
/Units.
cpp \
2303 $(SRC
)/Units
/Settings.
cpp \
2304 $(SRC
)/Units
/Descriptor.
cpp \
2305 $(SRC
)/Formatter
/Units.
cpp \
2306 $(SRC
)/Waypoint
/WaypointFileType.
cpp \
2307 $(SRC
)/Waypoint
/WaypointGlue.
cpp \
2308 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
2309 $(SRC
)/Waypoint
/WaypointReader.
cpp \
2310 $(SRC
)/Waypoint
/WaypointReaderOzi.
cpp \
2311 $(SRC
)/Waypoint
/WaypointReaderFS.
cpp \
2312 $(SRC
)/Waypoint
/WaypointReaderWinPilot.
cpp \
2313 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
2314 $(SRC
)/Waypoint
/WaypointReaderZander.
cpp \
2315 $(SRC
)/Waypoint
/WaypointReaderCompeGPS.
cpp \
2316 $(SRC
)/Operation
/Operation.
cpp \
2317 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
2318 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
2319 $(TEST_SRC_DIR
)/FakeDialogs.
cpp \
2320 $(TEST_SRC_DIR
)/FakeLanguage.
cpp \
2321 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
2322 $(TEST_SRC_DIR
)/FakeProfile.
cpp \
2323 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
2324 $(TEST_SRC_DIR
)/RunTaskEditorDialog.
cpp
2325 RUN_TASK_EDITOR_DIALOG_LDADD
= \
2328 RUN_TASK_EDITOR_DIALOG_DEPENDS
= FORM WIDGET DATA_FIELD SCREEN EVENT IO OS THREAD ZZIP UTIL GEO
2329 $(eval
$(call link-program
,RunTaskEditorDialog
,RUN_TASK_EDITOR_DIALOG
))
2331 TEST_NOTIFY_SOURCES
= \
2332 $(SRC
)/Event
/Idle.
cpp \
2333 $(TEST_SRC_DIR
)/FakeAsset.
cpp \
2334 $(TEST_SRC_DIR
)/FakeBlank.
cpp \
2335 $(TEST_SRC_DIR
)/tap.c \
2336 $(TEST_SRC_DIR
)/TestNotify.
cpp
2337 TEST_NOTIFY_DEPENDS
= EVENT SCREEN MATH UTIL OS THREAD
2338 $(eval
$(call link-program
,TestNotify
,TEST_NOTIFY
))
2340 FEED_NMEA_SOURCES
= \
2341 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
2342 $(SRC
)/OS
/LogError.
cpp \
2343 $(SRC
)/Operation
/Operation.
cpp \
2344 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
2345 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
2346 $(TEST_SRC_DIR
)/DebugPort.
cpp \
2347 $(TEST_SRC_DIR
)/FeedNMEA.
cpp
2348 FEED_NMEA_DEPENDS
= PORT ASYNC OS THREAD UTIL
2349 $(eval
$(call link-program
,FeedNMEA
,FEED_NMEA
))
2351 FEED_VEGA_SOURCES
= \
2352 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
2353 $(SRC
)/OS
/LogError.
cpp \
2354 $(SRC
)/Operation
/Operation.
cpp \
2355 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
2356 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
2357 $(TEST_SRC_DIR
)/DebugPort.
cpp \
2358 $(TEST_SRC_DIR
)/FeedVega.
cpp
2359 FEED_VEGA_DEPENDS
= PORT ASYNC OS THREAD UTIL
2360 $(eval
$(call link-program
,FeedVega
,FEED_VEGA
))
2362 EMULATE_DEVICE_SOURCES
= \
2363 $(SRC
)/Device
/Port
/ConfiguredPort.
cpp \
2364 $(SRC
)/Device
/Port
/LineSplitter.
cpp \
2365 $(SRC
)/Device
/Internal.
cpp \
2366 $(SRC
)/Device
/Driver
/FLARM
/BinaryProtocol.
cpp \
2367 $(SRC
)/Device
/Driver
/FLARM
/CRC16.
cpp \
2368 $(SRC
)/NMEA
/Checksum.
cpp \
2369 $(SRC
)/NMEA
/InputLine.
cpp \
2370 $(SRC
)/IO
/CSVLine.
cpp \
2371 $(SRC
)/OS
/LogError.
cpp \
2372 $(SRC
)/Operation
/Operation.
cpp \
2373 $(SRC
)/Operation
/ConsoleOperationEnvironment.
cpp \
2374 $(TEST_SRC_DIR
)/FakeLogFile.
cpp \
2375 $(TEST_SRC_DIR
)/DebugPort.
cpp \
2376 $(TEST_SRC_DIR
)/EmulateDevice.
cpp
2377 EMULATE_DEVICE_DEPENDS
= PORT ASYNC OS THREAD UTIL
2378 $(eval
$(call link-program
,EmulateDevice
,EMULATE_DEVICE
))
2380 FEED_TCP_SOURCES
= \
2381 $(TEST_SRC_DIR
)/FeedTCP.
cpp
2382 FEED_TCP_DEPENDS
= OS
2384 $(eval
$(call link-program
,FeedTCP
,FEED_TCP
))
2386 FEED_FLYNET_DATA_SOURCES
= \
2387 $(SRC
)/Math
/fixed.
cpp \
2388 $(TEST_SRC_DIR
)/FeedFlyNetData.
cpp
2389 FEED_FLYNET_DATA_DEPENDS
= OS UTIL
2391 $(eval
$(call link-program
,FeedFlyNetData
,FEED_FLYNET_DATA
))
2393 TASK_INFO_SOURCES
= \
2394 $(SRC
)/Engine
/Util
/Gradient.
cpp \
2395 $(SRC
)/Task
/Serialiser.
cpp \
2396 $(SRC
)/Task
/Deserialiser.
cpp \
2397 $(SRC
)/XML
/Node.
cpp \
2398 $(SRC
)/XML
/Parser.
cpp \
2399 $(SRC
)/XML
/Writer.
cpp \
2400 $(SRC
)/XML
/DataNode.
cpp \
2401 $(SRC
)/XML
/DataNodeXML.
cpp \
2402 $(TEST_SRC_DIR
)/TaskInfo.
cpp
2403 TASK_INFO_DEPENDS
= TASK ROUTE GLIDE WAYPOINT IO OS GEO MATH UTIL
2404 $(eval
$(call link-program
,TaskInfo
,TASK_INFO
))
2406 DUMP_TASK_FILE_SOURCES
= \
2407 $(SRC
)/Engine
/Util
/Gradient.
cpp \
2408 $(SRC
)/Units
/Descriptor.
cpp \
2409 $(SRC
)/Units
/System.
cpp \
2410 $(SRC
)/XML
/Node.
cpp \
2411 $(SRC
)/XML
/Parser.
cpp \
2412 $(SRC
)/XML
/Writer.
cpp \
2413 $(SRC
)/XML
/DataNode.
cpp \
2414 $(SRC
)/XML
/DataNodeXML.
cpp \
2415 $(SRC
)/IGC
/IGCParser.
cpp \
2416 $(SRC
)/Task
/Serialiser.
cpp \
2417 $(SRC
)/Task
/Deserialiser.
cpp \
2418 $(SRC
)/Task
/TaskFile.
cpp \
2419 $(SRC
)/Task
/TaskFileXCSoar.
cpp \
2420 $(SRC
)/Task
/TaskFileIGC.
cpp \
2421 $(SRC
)/Task
/TaskFileSeeYou.
cpp \
2422 $(SRC
)/Waypoint
/WaypointReaderBase.
cpp \
2423 $(SRC
)/Waypoint
/WaypointReaderSeeYou.
cpp \
2424 $(SRC
)/Operation
/Operation.
cpp \
2425 $(SRC
)/RadioFrequency.
cpp \
2426 $(TEST_SRC_DIR
)/FakeTerrain.
cpp \
2427 $(TEST_SRC_DIR
)/DumpTaskFile.
cpp
2428 DUMP_TASK_FILE_DEPENDS
= TASK GLIDE WAYPOINT IO OS THREAD ZZIP GEO MATH UTIL
2429 $(eval
$(call link-program
,DumpTaskFile
,DUMP_TASK_FILE
))
2431 DUMP_FLARM_NET_SOURCES
= \
2432 $(SRC
)/FLARM
/FlarmNetReader.
cpp \
2433 $(SRC
)/FLARM
/FlarmId.
cpp \
2434 $(SRC
)/FLARM
/FlarmNetRecord.
cpp \
2435 $(SRC
)/FLARM
/FlarmNetDatabase.
cpp \
2436 $(TEST_SRC_DIR
)/DumpFlarmNet.
cpp
2437 DUMP_FLARM_NET_DEPENDS
= IO OS MATH UTIL
2438 $(eval
$(call link-program
,DumpFlarmNet
,DUMP_FLARM_NET
))
2440 IGC2NMEA_SOURCES
= \
2441 $(DEBUG_REPLAY_SOURCES
) \
2442 $(TEST_SRC_DIR
)/IGC2NMEA.
cpp
2443 IGC2NMEA_DEPENDS
= GEO MATH UTIL TIME
2444 IGC2NMEA_LDADD
= $(DEBUG_REPLAY_LDADD
)
2446 $(eval
$(call link-program
,IGC2NMEA
,IGC2NMEA
))
2448 TODAY_INSTALL_SOURCES
= \
2449 $(TEST_SRC_DIR
)/TodayInstall.
cpp
2450 $(eval
$(call link-program
,TodayInstall
,TODAY_INSTALL
))
2452 debug
: $(DEBUG_PROGRAMS
)