search for: all_sources

Displaying 4 results from an estimated 4 matches for "all_sources".

Did you mean: _la_sources
2012 Feb 22
5
[PATCH] Add gtags target for xen/Makefile. Also update .hgignore.
...s TAGS cscope.files cscope.in.out cscope.out cscope.po.out + rm -f tags TAGS cscope.files cscope.in.out cscope.out cscope.po.out gtags.files GTAGS GPATH GRTAGS GSYMS $(TARGET).gz: $(TARGET) gzip -f -9 < $< > $@.new @@ -159,6 +159,12 @@ _tags: $(call set_exuberant_flags,ctags); \ $(all_sources) | xargs ctags $$exuberant_flags -a +.PHONY: _gtags +_gtags: + set -e; rm -f GTAGS GSYMS GPATH GRTAGS + $(all_sources) > gtags.files + gtags -f gtags.files + .PHONY: _cscope _cscope: $(all_sources) > cscope.files
2006 Sep 21
0
[PATCH] Clean up and enhance "make tags"
...ffis <aron@hp.com> diff -r 596b0e4fbef4 -r 010ae57673c7 xen/Makefile --- a/xen/Makefile Wed Sep 20 16:52:15 2006 +0100 +++ b/xen/Makefile Wed Sep 20 21:47:29 2006 -0400 @@ -123,19 +123,29 @@ include/asm-$(TARGET_ARCH)/asm-offsets.h SUBDIRS = acm arch/$(TARGET_ARCH) common drivers define all_sources - ( find include/asm-$(TARGET_ARCH) -name SCCS -prune -o -name ''*.h'' -print; \ - find include -type d -name SCCS -prune -o \( -name "asm-*" -o \ - -name config \) -prune -o -name ''*.h'' -print; \ - find $(SUBDIRS) -name SCCS -prun...
2005 Apr 15
0
[PATCH] add cscope support to xen Makefile
...===== --- 1.78/xen/Makefile 2005-03-28 13:51:31 -08:00 +++ edited/xen/Makefile 2005-04-14 14:25:33 -07:00 @@ -106,15 +106,18 @@ include/asm-$(TARGET_ARCH)/asm-offsets.h .PHONY: default debug install dist clean delete-unfresh-files TAGS tags SUBDIRS = arch/$(TARGET_ARCH) common drivers +define all_sources + ( find include/asm-$(TARGET_ARCH) -name SCCS -prune -o -name ''*.h'' -print; \ + find include -type d -name SCCS -prune -o \( -name "asm-*" -o \ + -name config \) -prune -o -name ''*.h'' -print; \ + find $(SUBDIRS) -name SCCS -prun...
2006 May 11
11
[PATCH] Integrating applications into Mini-OS
...Y: clean @@ -55,10 +60,10 @@ find . -type l | xargs rm -f %.o: %.c $(HDRS) Makefile - $(CC) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ %.o: %.S $(HDRS) Makefile - $(CC) $(CFLAGS) -D__ASSEMBLY__ -c $< -o $@ + $(CC) $(ASFLAGS) $(CPPFLAGS) -c $< -o $@ define all_sources ( find . -follow -name SCCS -prune -o -name ''*.[chS]'' -print ) Only in xen-unstable/extras/mini-os: newlib.c Only in xen-unstable/extras/mini-os: setjmp_x86_32.S _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://list...