diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-18 04:11:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-18 04:11:39 +0000 |
commit | 74400ccfd08e8ff72b9147951dd437dd3bb7abb1 (patch) | |
tree | d1e5c30982d3ef735c33b3b52722aaaadd8daaaa /Makefile | |
parent | 8acbf1d3079e9ed6d15c39bd57135b13ecb4076f (diff) | |
download | busybox-w32-74400ccfd08e8ff72b9147951dd437dd3bb7abb1.tar.gz busybox-w32-74400ccfd08e8ff72b9147951dd437dd3bb7abb1.tar.bz2 busybox-w32-74400ccfd08e8ff72b9147951dd437dd3bb7abb1.zip |
Scrub up some function prototypes.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -86,7 +86,7 @@ STRIPTOOL = $(CROSS)strip | |||
86 | 86 | ||
87 | # To compile vs uClibc, just use the compiler wrapper built by uClibc... | 87 | # To compile vs uClibc, just use the compiler wrapper built by uClibc... |
88 | # Everything should compile and work as expected these days... | 88 | # Everything should compile and work as expected these days... |
89 | #CC = ../uClibc/extra/gcc-uClibc/i386-uclibc-gcc | 89 | #CC = /usr/i386-linux-uclibc/usr/bin/i386-uclibc-gcc |
90 | 90 | ||
91 | # To compile vs some other alternative libc, you may need to use/adjust | 91 | # To compile vs some other alternative libc, you may need to use/adjust |
92 | # the following lines to meet your needs... | 92 | # the following lines to meet your needs... |
@@ -110,8 +110,7 @@ STRIPTOOL = $(CROSS)strip | |||
110 | OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ | 110 | OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ |
111 | then echo "-Os"; else echo "-O2" ; fi) | 111 | then echo "-Os"; else echo "-O2" ; fi) |
112 | 112 | ||
113 | WARNINGS = -Wall -Wshadow | 113 | WARNINGS=-Wall -Wstrict-prototypes -Wshadow |
114 | |||
115 | ARFLAGS = -r | 114 | ARFLAGS = -r |
116 | 115 | ||
117 | # | 116 | # |