* [MINIOS PATCH 0/3] Some miscellaneous patches
@ 2016-08-29 13:01 Wei Liu
2016-08-29 13:01 ` [MINIOS PATCH 1/3] Makefile: simplify all_sources macro Wei Liu
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Wei Liu @ 2016-08-29 13:01 UTC (permalink / raw)
To: Minios-devel; +Cc: Juergen Gross, Xen-devel, Wei Liu, Samuel Thibault
Wei Liu (3):
Makefile: simplify all_sources macro
Makefile: add gtags target
gitignore: ignore files generated by various indexing software
.gitignore | 7 +++++++
Makefile | 6 +++++-
2 files changed, 12 insertions(+), 1 deletion(-)
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* [MINIOS PATCH 1/3] Makefile: simplify all_sources macro
2016-08-29 13:01 [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
@ 2016-08-29 13:01 ` Wei Liu
2016-08-29 13:07 ` Juergen Gross
2016-08-29 13:01 ` [MINIOS PATCH 2/3] Makefile: add gtags target Wei Liu
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Wei Liu @ 2016-08-29 13:01 UTC (permalink / raw)
To: Minios-devel; +Cc: Juergen Gross, Xen-devel, Wei Liu, Samuel Thibault
There is no SCCS file.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index b783684..a8ae67c 100644
--- a/Makefile
+++ b/Makefile
@@ -175,7 +175,7 @@ clean: arch_clean
define all_sources
- ( find . -name SCCS -prune -o -name '*.[chS]' -print )
+ ( find . -name '*.[chS]' -print )
endef
.PHONY: cscope
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [MINIOS PATCH 2/3] Makefile: add gtags target
2016-08-29 13:01 [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
2016-08-29 13:01 ` [MINIOS PATCH 1/3] Makefile: simplify all_sources macro Wei Liu
@ 2016-08-29 13:01 ` Wei Liu
2016-08-29 13:07 ` Juergen Gross
2016-08-29 13:01 ` [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software Wei Liu
2016-08-30 8:15 ` [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
3 siblings, 1 reply; 11+ messages in thread
From: Wei Liu @ 2016-08-29 13:01 UTC (permalink / raw)
To: Minios-devel; +Cc: Juergen Gross, Xen-devel, Wei Liu, Samuel Thibault
Use GNU Global to generate source code index.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
Makefile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Makefile b/Makefile
index a8ae67c..43dcbd6 100644
--- a/Makefile
+++ b/Makefile
@@ -190,3 +190,7 @@ tags:
.PHONY: TAGS
TAGS:
$(all_sources) | xargs etags
+
+.PHONY: gtags
+gtags:
+ $(all_sources) | gtags -f -
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software
2016-08-29 13:01 [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
2016-08-29 13:01 ` [MINIOS PATCH 1/3] Makefile: simplify all_sources macro Wei Liu
2016-08-29 13:01 ` [MINIOS PATCH 2/3] Makefile: add gtags target Wei Liu
@ 2016-08-29 13:01 ` Wei Liu
2016-08-29 13:07 ` Juergen Gross
2016-08-30 8:15 ` [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
3 siblings, 1 reply; 11+ messages in thread
From: Wei Liu @ 2016-08-29 13:01 UTC (permalink / raw)
To: Minios-devel; +Cc: Juergen Gross, Xen-devel, Wei Liu, Samuel Thibault
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
.gitignore | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/.gitignore b/.gitignore
index efc193c..e55133d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,13 @@
*.o
*.a
*.swp
+cscope.*
+GPATH
+GRTAGS
+GTAGS
+TAGS
+tags
+
arch/x86/minios-x86*.lds
include/list.h
mini-os
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 1/3] Makefile: simplify all_sources macro
2016-08-29 13:01 ` [MINIOS PATCH 1/3] Makefile: simplify all_sources macro Wei Liu
@ 2016-08-29 13:07 ` Juergen Gross
2016-08-29 20:36 ` Samuel Thibault
0 siblings, 1 reply; 11+ messages in thread
From: Juergen Gross @ 2016-08-29 13:07 UTC (permalink / raw)
To: Wei Liu, Minios-devel; +Cc: Xen-devel, Samuel Thibault
On 29/08/16 15:01, Wei Liu wrote:
> There is no SCCS file.
>
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 2/3] Makefile: add gtags target
2016-08-29 13:01 ` [MINIOS PATCH 2/3] Makefile: add gtags target Wei Liu
@ 2016-08-29 13:07 ` Juergen Gross
2016-08-29 20:36 ` Samuel Thibault
0 siblings, 1 reply; 11+ messages in thread
From: Juergen Gross @ 2016-08-29 13:07 UTC (permalink / raw)
To: Wei Liu, Minios-devel; +Cc: Xen-devel, Samuel Thibault
On 29/08/16 15:01, Wei Liu wrote:
> Use GNU Global to generate source code index.
>
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software
2016-08-29 13:01 ` [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software Wei Liu
@ 2016-08-29 13:07 ` Juergen Gross
2016-08-29 20:36 ` Samuel Thibault
0 siblings, 1 reply; 11+ messages in thread
From: Juergen Gross @ 2016-08-29 13:07 UTC (permalink / raw)
To: Wei Liu, Minios-devel; +Cc: Xen-devel, Samuel Thibault
On 29/08/16 15:01, Wei Liu wrote:
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 1/3] Makefile: simplify all_sources macro
2016-08-29 13:07 ` Juergen Gross
@ 2016-08-29 20:36 ` Samuel Thibault
0 siblings, 0 replies; 11+ messages in thread
From: Samuel Thibault @ 2016-08-29 20:36 UTC (permalink / raw)
To: Juergen Gross; +Cc: Minios-devel, Xen-devel, Wei Liu
Juergen Gross, on Mon 29 Aug 2016 15:07:20 +0200, wrote:
> On 29/08/16 15:01, Wei Liu wrote:
> > There is no SCCS file.
> >
> > Signed-off-by: Wei Liu <wei.liu2@citrix.com>
>
> Reviewed-by: Juergen Gross <jgross@suse.com>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 2/3] Makefile: add gtags target
2016-08-29 13:07 ` Juergen Gross
@ 2016-08-29 20:36 ` Samuel Thibault
0 siblings, 0 replies; 11+ messages in thread
From: Samuel Thibault @ 2016-08-29 20:36 UTC (permalink / raw)
To: Juergen Gross; +Cc: Minios-devel, Xen-devel, Wei Liu
Juergen Gross, on Mon 29 Aug 2016 15:07:39 +0200, wrote:
> On 29/08/16 15:01, Wei Liu wrote:
> > Use GNU Global to generate source code index.
> >
> > Signed-off-by: Wei Liu <wei.liu2@citrix.com>
>
> Reviewed-by: Juergen Gross <jgross@suse.com>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software
2016-08-29 13:07 ` Juergen Gross
@ 2016-08-29 20:36 ` Samuel Thibault
0 siblings, 0 replies; 11+ messages in thread
From: Samuel Thibault @ 2016-08-29 20:36 UTC (permalink / raw)
To: Juergen Gross; +Cc: Minios-devel, Xen-devel, Wei Liu
Juergen Gross, on Mon 29 Aug 2016 15:07:55 +0200, wrote:
> On 29/08/16 15:01, Wei Liu wrote:
> > Signed-off-by: Wei Liu <wei.liu2@citrix.com>
>
> Reviewed-by: Juergen Gross <jgross@suse.com>
Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [MINIOS PATCH 0/3] Some miscellaneous patches
2016-08-29 13:01 [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
` (2 preceding siblings ...)
2016-08-29 13:01 ` [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software Wei Liu
@ 2016-08-30 8:15 ` Wei Liu
3 siblings, 0 replies; 11+ messages in thread
From: Wei Liu @ 2016-08-30 8:15 UTC (permalink / raw)
To: Minios-devel; +Cc: Juergen Gross, Xen-devel, Wei Liu, Samuel Thibault
On Mon, Aug 29, 2016 at 02:01:39PM +0100, Wei Liu wrote:
> Wei Liu (3):
> Makefile: simplify all_sources macro
> Makefile: add gtags target
> gitignore: ignore files generated by various indexing software
>
> .gitignore | 7 +++++++
> Makefile | 6 +++++-
> 2 files changed, 12 insertions(+), 1 deletion(-)
>
Pushed.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-08-30 8:15 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-29 13:01 [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
2016-08-29 13:01 ` [MINIOS PATCH 1/3] Makefile: simplify all_sources macro Wei Liu
2016-08-29 13:07 ` Juergen Gross
2016-08-29 20:36 ` Samuel Thibault
2016-08-29 13:01 ` [MINIOS PATCH 2/3] Makefile: add gtags target Wei Liu
2016-08-29 13:07 ` Juergen Gross
2016-08-29 20:36 ` Samuel Thibault
2016-08-29 13:01 ` [MINIOS PATCH 3/3] gitignore: ignore files generated by various indexing software Wei Liu
2016-08-29 13:07 ` Juergen Gross
2016-08-29 20:36 ` Samuel Thibault
2016-08-30 8:15 ` [MINIOS PATCH 0/3] Some miscellaneous patches Wei Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).