changeset 403:d49bf523efcb

A couple of minor tweaks: -funsigned-char breaks make test and that's the default when building on arm, so explicitly specify the one the code's assuming. Plus it's the .hg directory this one needs to exclude when making a tarball...
author landley@driftwood
date Sun, 08 Oct 2006 13:59:19 -0400
parents 7e9800049711
children 1f9726b63fde
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Oct 08 12:28:30 2006 -0400
+++ b/Makefile	Sun Oct 08 13:59:19 2006 -0400
@@ -3,7 +3,7 @@
 #
 include config.mak
 
-CFLAGS+=-g -Wall
+CFLAGS+=-g -Wall -fsigned-char -Os
 ifndef CONFIG_WIN32
 LIBS=-ldl
 BCHECK_O=bcheck.o
@@ -294,5 +294,5 @@
 tar:
 	rm -rf /tmp/$(FILE)
 	cp -r . /tmp/$(FILE)
-	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
+	( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude .hg )
 	rm -rf /tmp/$(FILE)