search for: notdir

Displaying 20 results from an estimated 45 matches for "notdir".

Did you mean: enotdir
2013 Jul 17
13
[PATCH 0/3] xen: various changes to what we install in /boot
Jan suggested a couple of cleanups based upon my "xen: allow architecture to choose whether to compress installed xen binary" patch. So this series now consists of: xen: allow architecture to choose how/whether to compress installed xen binary xen: x86: drop the ".gz" suffix when installing xen: Use $(T) and $(D) aliases in install target This is based
2013 Jul 12
14
[PATCH] xen: arm: make zImage the default target which we install
From: Ian Campbell <ian.campbell@citrix.com> The zImage compatible binary is the useful one on real hardware. The relocated ELF thing is only really useful when booting directly on Fast Models. The customary suffix for that case is .axf so provide that as a target. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Cc: Wookey <wookey@linaro.org> --- xen/arch/arm/Makefile |
2011 Jun 30
0
[PATCH] x86/EFI: adjust installation logic
We should always install xen.efi into /usr/lib64/efi/; installation into /boot/efi/efi/$(EFI_VENDOR) remains dependent upon specifying EFI_VENDOR. Signed-off-by: Jan Beulich <jbeulich@novell.com> --- a/xen/Makefile +++ b/xen/Makefile @@ -35,11 +35,16 @@ _install: $(TARGET).gz ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))-$(XEN_VERSION).gz ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET)).gz $(INSTALL_DATA) $(TARGET)-syms $(DESTDIR)/boot/$(notdir $(TARGET))-syms-$(XEN_FULLVERSION) - if [ -r $(TARGET).efi -a...
2006 Feb 18
1
r24 - trunk/debian/patches
...2006-02-16 23:44:09.000000000 +0100 -+++ xen-3.0-testing.hg/xen/Makefile 2006-02-18 17:05:59.803870888 +0100 -@@ -27,6 +27,13 @@ - - install: $(TARGET).gz - [ -d $(DESTDIR)/boot ] || $(INSTALL_DIR) $(DESTDIR)/boot -+ifeq ($(XEN_TARGET_X86_PAE),y) -+ $(INSTALL_DATA) $(TARGET).gz $(DESTDIR)/boot/$(notdir $(TARGET))_pae-$(XEN_FULLVERSION).gz -+ ln -f -s $(notdir $(TARGET))_pae-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))_pae-$(XEN_VERSION).$(XEN_SUBVERSION).gz -+ ln -f -s $(notdir $(TARGET))_pae-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET))_pae-$(XEN_VERSION).gz -+ ln -f -s...
2006 Jun 26
0
[klibc 09/43] kbuild: support single targets for klibc and klibc programs
...build) zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) endif %.s: %.c prepare scripts FORCE - $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) + $(Q)$(MAKE) $(singlebld)=$(build-dir) $(target-dir)$(notdir $@) %.i: %.c prepare scripts FORCE - $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) + $(Q)$(MAKE) $(singlebld)=$(build-dir) $(target-dir)$(notdir $@) %.o: %.c prepare scripts FORCE - $(Q)$(MAKE) $(build)=$(build-dir) $...
2012 Jul 16
23
[PATCH] x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi
...n of the binary''s name replaced by `.cfg`, and - until an existing diff -r 9950f2dc2ee6 -r dd1ab0cae2c8 xen/Makefile --- a/xen/Makefile Mon Jul 09 10:10:27 2012 +0100 +++ b/xen/Makefile Mon Jul 16 23:37:16 2012 +0000 @@ -36,11 +36,11 @@ build install debug clean distclean csco ln -f -s $(notdir $(TARGET))-$(XEN_FULLVERSION).gz $(DESTDIR)/boot/$(notdir $(TARGET)).gz $(INSTALL_DATA) $(TARGET)-syms $(DESTDIR)/boot/$(notdir $(TARGET))-syms-$(XEN_FULLVERSION) if [ -r $(TARGET).efi ]; then \ - [ -d $(DESTDIR)$(LIBDIR)/efi ] || $(INSTALL_DIR) $(DESTDIR)$(LIBDIR)/efi; \ - $(INSTALL_DATA) $(...
2006 Apr 17
0
[PATCH] kbuild: support single targets for klibc and klibc programs
...build) zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) endif %.s: %.c prepare scripts FORCE - $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) + $(Q)$(MAKE) $(singlebld)=$(build-dir) $(target-dir)$(notdir $@) %.i: %.c prepare scripts FORCE - $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) + $(Q)$(MAKE) $(singlebld)=$(build-dir) $(target-dir)$(notdir $@) %.o: %.c prepare scripts FORCE - $(Q)$(MAKE) $(build)=$(build-dir) $...
2015 Sep 14
2
[PATCH] Dont bypass compiler driver for Dependency generation options
...> --- a/mk/syslinux.mk >> +++ b/mk/syslinux.mk >> @@ -82,11 +82,11 @@ ARCH ?= $(strip $(SUBARCH)) >> GCCWARN = -W -Wall -Wstrict-prototypes $(DEBUGOPT) >> >> # Common stanza to make gcc generate .*.d dependency files >> -MAKEDEPS = -Wp,-MT,$@,-MD,$(dir $@).$(notdir $@).d >> +MAKEDEPS = -MT $@ -MD >> >> # Dependencies that exclude system headers; use whenever we use >> # header files from the platform. >> -UMAKEDEPS = -Wp,-MT,$@,-MMD,$(dir $@).$(notdir $@).d >> +UMAKEDEPS = -MT $@ -MMD >> >> # Items that are on...
2015 Sep 10
3
[PATCH] Dont bypass compiler driver for Dependency generation options
...linux.mk b/mk/syslinux.mk index 337560b..9ca74b1 100644 --- a/mk/syslinux.mk +++ b/mk/syslinux.mk @@ -82,11 +82,11 @@ ARCH ?= $(strip $(SUBARCH)) GCCWARN = -W -Wall -Wstrict-prototypes $(DEBUGOPT) # Common stanza to make gcc generate .*.d dependency files -MAKEDEPS = -Wp,-MT,$@,-MD,$(dir $@).$(notdir $@).d +MAKEDEPS = -MT $@ -MD # Dependencies that exclude system headers; use whenever we use # header files from the platform. -UMAKEDEPS = -Wp,-MT,$@,-MMD,$(dir $@).$(notdir $@).d +UMAKEDEPS = -MT $@ -MMD # Items that are only appropriate during development; this file is # removed when tar...
2010 Aug 05
2
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...M_CONFIG) \ @@ -1018,6 +1046,21 @@ ifeq ($(HOST_OS),Darwin) LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile) endif +# GNU ld Win32 accepts .DEF files that contain "DATA" entries. +ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW)) +NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def)) + +# LLVMLibsOptions is invalidated at processing tools/llvm-shlib. +SharedLinkOptions += $(NativeExportsFile) + +$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir + $(Echo) Generating $(notdir $@) + $(Verb) $(ECHO) "EXPORTS" > $@ + $(V...
2004 Oct 23
1
[LLVMdev] UPDATE: Makefile.rules Changes (IMPORTANT)
...; #---------------------------------------------------------- > -# Source includes all of the cpp files, and objects are derived from the > -# source files... > -# The local Makefile can list other Source files via BUILT_SOURCES = ... > -# > -ifndef Source > - > -Source := $(notdir $(wildcard $(BUILD_SRC_DIR)/*.cpp \ > - $(BUILD_SRC_DIR)/*.cc $(BUILD_SRC_DIR)/*.c $(BUILD_SRC_DIR)/*.y \ > - $(BUILD_SRC_DIR)/*.l)) > +# Get the list of source files > +#---------------------------------------------------------- > +ifndef SOURCE...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...5 insertions(+), 35 deletions(-) diff --git a/codepage/Makefile b/codepage/Makefile index 18a590f..af5258a 100644 --- a/codepage/Makefile +++ b/codepage/Makefile @@ -1,6 +1,6 @@ VPATH = $(SRC) PERL = perl -CPSRC = $(wildcard $(SRC)/*.txt) +CPSRC = $(sort $(wildcard $(SRC)/*.txt)) CPOBJ = $(notdir $(CPSRC)) GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ)) diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 6bb5231..b81b68e 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -32,8 +32,8 @@ LIBMENU = libmenu/syslnx.o libmenu/com32io.o libmenu/tui.o \ libmenu/menu.o libmen...
2010 Aug 05
0
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
Hi Takumi, > Any feedbacks are welcome. > Have fun! This seems to be pretty useful addition to LLVM on windows! And it seems the only painless way to make plugins working, yay! For me the patch looks pretty good. One minor thing: could you please rename SharedDir => SharedLibDir Thanks! -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg
2010 Aug 05
3
[LLVMdev] [PATCH] Capability of Win32.DLL with ENABLE_SHARED
...M_CONFIG) \ @@ -1018,6 +1047,21 @@ ifeq ($(HOST_OS),Darwin) LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile) endif +# GNU ld Win32 accepts .DEF files that contain "DATA" entries. +ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW)) +NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def)) + +# LLVMLibsOptions is invalidated at processing tools/llvm-shlib. +SharedLinkOptions += $(NativeExportsFile) + +$(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir + $(Echo) Generating $(notdir $@) + $(Verb) $(ECHO) "EXPORTS" > $@ + $(V...
2010 Sep 29
0
[LLVMdev] LLVM2.8rc2 on MinGW 4.5.1 with --enable-shared
...from the source # export file. +# The option --version-script is not effective on GNU ld win32. +ifneq (,$(filter $(HOST_OS),Cygwin MingW)) + HAVE_LINK_VERSION_SCRIPT := 0 +endif + ifeq ($(HOST_OS),Darwin) # Darwin convention prefixes symbols with underscores. NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed ...Takumi 2010/9/30 Kevin Kelley <kevin at kelleysoft.com>: > Anybody having success building an LLVM.dll in this configuration? > It's failing for me, in tools/llvm-shlib, with an error suggesting > that the gcc ld doesn't understand the form...
2015 Sep 13
0
[PATCH] Dont bypass compiler driver for Dependency generation options
...37560b..9ca74b1 100644 > --- a/mk/syslinux.mk > +++ b/mk/syslinux.mk > @@ -82,11 +82,11 @@ ARCH ?= $(strip $(SUBARCH)) > GCCWARN = -W -Wall -Wstrict-prototypes $(DEBUGOPT) > > # Common stanza to make gcc generate .*.d dependency files > -MAKEDEPS = -Wp,-MT,$@,-MD,$(dir $@).$(notdir $@).d > +MAKEDEPS = -MT $@ -MD > > # Dependencies that exclude system headers; use whenever we use > # header files from the platform. > -UMAKEDEPS = -Wp,-MT,$@,-MMD,$(dir $@).$(notdir $@).d > +UMAKEDEPS = -MT $@ -MMD > > # Items that are only appropriate during developme...
2015 Dec 10
0
[PATCH] Dont bypass compiler driver for Dependency generation options
...mk >>> +++ b/mk/syslinux.mk >>> @@ -82,11 +82,11 @@ ARCH ?= $(strip $(SUBARCH)) >>> GCCWARN = -W -Wall -Wstrict-prototypes $(DEBUGOPT) >>> >>> # Common stanza to make gcc generate .*.d dependency files >>> -MAKEDEPS = -Wp,-MT,$@,-MD,$(dir $@).$(notdir $@).d >>> +MAKEDEPS = -MT $@ -MD >>> >>> # Dependencies that exclude system headers; use whenever we use >>> # header files from the platform. >>> -UMAKEDEPS = -Wp,-MT,$@,-MMD,$(dir $@).$(notdir $@).d >>> +UMAKEDEPS = -MT $@ -MMD >>> &g...
2004 Jan 25
0
[PATCH] include /.emacs.d?
...route my mail through my ISP's mail server has. :-) Thanks again, -Jim --- klibc-0.95/klibc/Makefile~ 2003-12-07 17:44:27.000000000 -0800 +++ klibc-0.95/klibc/Makefile 2004-01-16 11:50:13.099010983 -0800 @@ -117,12 +117,12 @@ touch $@ %/static.obj: %.dir - $(MAKE) objects-$(basename $(notdir $@)) DIR=$* + $(MAKE) objects-$(basename $(notdir $@)) DIR=$*/ -STATIC = $(addsuffix .o,$(basename $(wildcard $(DIR)/*.[cS]))) +STATIC = $(addsuffix .o,$(basename $(wildcard $(DIR)*.[cS]))) objects-static: $(STATIC) - touch $(DIR)/static.obj + touch $(DIR)static.obj clean: archclean find...
2009 Sep 08
1
makefile for sweave
...UTS=${TPUTS} pdflatex $< TEXINPUTS=${TPUTS} pdflatex $< rm *.log # mv *.aux $(dir $<) # How to build the tex files from the Rnw (Sweave) files %.tex: %.Rnw echo "library(utils); options(width=60); Sweave('$<')" | ${R_PRG} --no-save --vanilla mv $(notdir $*.tex) $(dir $<) # How to build the R code files from the Rnw (Sweave) files %.R: %.Rnw echo "library(utils); Stangle('$<')" | ${R_PRG} --no-save --vanilla %.bib: TEXINPUTS=${TPUTS} pdflatex $< bibtex $< %.aux: TEXINPUTS=${TPUTS} pdflatex $<...
2010 Sep 29
3
[LLVMdev] LLVM2.8rc2 on MinGW 4.5.1 with --enable-shared
Anybody having success building an LLVM.dll in this configuration? It's failing for me, in tools/llvm-shlib, with an error suggesting that the gcc ld doesn't understand the format of the exports map being generated. (plain configure && make works just fine, it's just this shared option that fails; google shows support for --enable-shared was added around 2.7 timeframe and