Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
f22f331e
Commit
f22f331e
authored
6 years ago
by
Daniel Agar
Committed by
David Sidrane
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Makefile add board rename deprecation warning
parent
ec4c9da2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+13
-1
13 additions, 1 deletion
Makefile
appveyor.yml
+1
-1
1 addition, 1 deletion
appveyor.yml
with
14 additions
and
2 deletions
Makefile
+
13
−
1
View file @
f22f331e
...
...
@@ -184,7 +184,19 @@ $(CONFIG_TARGETS_DEFAULT):
all_default_targets
:
$(CONFIG_TARGETS_DEFAULT)
posix
:
px4_sitl_default
posix_sitl_default
:
px4_sitl_default
# board reorganization deprecation warnings (2018-11-22)
define
deprecation_warning
$(
warning
$(
1
)
has been deprecated and will be removed, please use
$(
2
)
!
)
endef
px4fmu-%_default
:
$(
call deprecation_warning,
${
@
}
,
$(
subst px4fmu,px4_fmu,
$@
))
$(
MAKE
)
$(
subst px4fmu,px4_fmu,
$@
)
posix_sitl_default
:
$(
call deprecation_warning,
${
@
}
,px4_sitl_default
)
$(
MAKE
)
px4_sitl_default
# All targets with just dependencies but no recipe must either be marked as phony (or have the special @: as recipe).
.PHONY
:
all posix px4_sitl_default all_nuttx_targets all_default_targets
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
1
−
1
View file @
f22f331e
...
...
@@ -41,7 +41,7 @@ build_script:
# fetch all submodules in parallel
-
call bash --login -c "cd $repopath && git submodule -q update --init --recursive --jobs=10"
# make SITL
-
call bash --login -c "cd $repopath && make p
osix
"
-
call bash --login -c "cd $repopath && make p
x4_sitl_default
"
# make pixracer to check NuttX build
-
call bash --login -c "cd $repopath && make px4_fmu-v4_default"
# run tests
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment