X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=Makefile;h=eab3e8a884fd31df5e51945c4d87b2b79b5f67d0;hp=44cec276ae12238a378175bd4be6553b33319125;hb=3307377768008d05c9fdb6506bcee18d030da66b;hpb=5c094516ec3158e147d3448b61b588814ed66f97 diff --git a/Makefile b/Makefile index 44cec27..eab3e8a 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ include Config -VERSION = 1.3.16 +VERSION = 1.3.17 # Debug mode (spam/verbose) DEBUG = 0 # make install vars @@ -35,11 +35,12 @@ OBJCOPY := $(CROSS)objcopy # The flags for the yaboot binary. # YBCFLAGS = -Os -m32 $(CFLAGS) -nostdinc -Wall -isystem `$(CC) -m32 -print-file-name=include` -fsigned-char -YBCFLAGS += -DVERSION=\"${VERSION}${VERSIONEXTRA}\" #" +YBCFLAGS += -DVERSION="\"${VERSION}${VERSIONEXTRA}\"" YBCFLAGS += -DTEXTADDR=$(TEXTADDR) -DDEBUG=$(DEBUG) YBCFLAGS += -DMALLOCADDR=$(MALLOCADDR) -DMALLOCSIZE=$(MALLOCSIZE) YBCFLAGS += -DKERNELADDR=$(KERNELADDR) YBCFLAGS += -I ./include +YBCFLAGS += -fno-strict-aliasing ifeq ($(CONFIG_COLOR_TEXT),y) YBCFLAGS += -DCONFIG_COLOR_TEXT @@ -156,6 +157,7 @@ clean: find . -not -path './\{arch\}*' -name ',,*' | xargs rm -rf -gunzip man/*.gz rm -rf man.deb + -rm cscope.* cleandocs: make -C doc clean @@ -239,3 +241,8 @@ deinstall: @echo "${ROOT}/etc/yaboot.conf has not been removed, you may remove it yourself if you wish." uninstall: deinstall + +.PHONY: cscope +cscope: + (echo \-k; echo \-q; find . -name '*.[chS]' )> cscope.files + cscope -b -f cscope.out