mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 10:58:49 +08:00
tool/configure will now copy Eclipse project files if they are present in the board directory file
This commit is contained in:
parent
fe5b3a58e4
commit
8a4bac43a1
5 changed files with 15 additions and 3 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -8,7 +8,7 @@ Make.dep
|
||||||
.swp
|
.swp
|
||||||
.*.swp
|
.*.swp
|
||||||
core
|
core
|
||||||
.gdbinit
|
/.gdbinit
|
||||||
/cscope.*
|
/cscope.*
|
||||||
/.config
|
/.config
|
||||||
/.config.old
|
/.config.old
|
||||||
|
@ -24,5 +24,7 @@ core
|
||||||
/*.bin
|
/*.bin
|
||||||
/*.ihx
|
/*.ihx
|
||||||
/*.hex
|
/*.hex
|
||||||
|
/.cproject
|
||||||
|
/.project
|
||||||
/pcode
|
/pcode
|
||||||
/tags
|
/tags
|
||||||
|
|
|
@ -556,6 +556,9 @@ clean: subdir_clean
|
||||||
$(call DELFILE, _SAVED_APPS_config)
|
$(call DELFILE, _SAVED_APPS_config)
|
||||||
$(call DELFILE, nuttx-export*)
|
$(call DELFILE, nuttx-export*)
|
||||||
$(call DELFILE, nuttx_user*)
|
$(call DELFILE, nuttx_user*)
|
||||||
|
$(call DELFILE, .gdbinit)
|
||||||
|
$(call DELFILE, .cproject)
|
||||||
|
$(call DELFILE, .project)
|
||||||
$(call CLEAN)
|
$(call CLEAN)
|
||||||
|
|
||||||
subdir_distclean:
|
subdir_distclean:
|
||||||
|
|
|
@ -538,6 +538,9 @@ clean: subdir_clean
|
||||||
$(call DELFILE, _SAVED_APPS_config)
|
$(call DELFILE, _SAVED_APPS_config)
|
||||||
$(call DELFILE, nuttx-export*)
|
$(call DELFILE, nuttx-export*)
|
||||||
$(call DELFILE, nuttx_user*)
|
$(call DELFILE, nuttx_user*)
|
||||||
|
$(call DELFILE, .gdbinit)
|
||||||
|
$(call DELFILE, .cproject)
|
||||||
|
$(call DELFILE, .project)
|
||||||
$(call CLEAN)
|
$(call CLEAN)
|
||||||
|
|
||||||
subdir_distclean:
|
subdir_distclean:
|
||||||
|
|
|
@ -100,7 +100,9 @@ static struct variable_s *g_versionvars = NULL;
|
||||||
|
|
||||||
static const char *g_optfiles[] =
|
static const char *g_optfiles[] =
|
||||||
{
|
{
|
||||||
".gdbinit"
|
".gdbinit",
|
||||||
|
".cproject",
|
||||||
|
".project"
|
||||||
};
|
};
|
||||||
|
|
||||||
#define N_OPTFILES (sizeof(g_optfiles) / sizeof(const char *))
|
#define N_OPTFILES (sizeof(g_optfiles) / sizeof(const char *))
|
||||||
|
|
|
@ -48,7 +48,9 @@ Where:
|
||||||
# A list of optional files that may be installed
|
# A list of optional files that may be installed
|
||||||
|
|
||||||
OPTFILES="\
|
OPTFILES="\
|
||||||
.gdbinit
|
.gdbinit\
|
||||||
|
.cproject\
|
||||||
|
.project\
|
||||||
"
|
"
|
||||||
|
|
||||||
# Parse command arguments
|
# Parse command arguments
|
||||||
|
|
Loading…
Reference in a new issue