diff options
author | Rob Landley <rob@landley.net> | 2006-11-25 13:32:01 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-11-25 13:32:01 -0500 |
commit | f06af2bef5fe73c4ff50ed177fab244ed9db9182 (patch) | |
tree | e3122ea0de69346f039c558e6d86a5832e34db88 /Makefile | |
parent | 8167fd5d543332fec86e87ae8a0d0eafb9eef7de (diff) | |
download | toybox-f06af2bef5fe73c4ff50ed177fab244ed9db9182.tar.gz |
Add another warning check and a missing dependency.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ # Makefile for toybox. # Copyright 2006 Rob Landley <rob@landley.net> -CFLAGS = -Wall -Os -s +CFLAGS = -Wall -Wundef -Os -s CC = $(CROSS_COMPILE)gcc $(CFLAGS) HOST_CC = gcc $(CFLAGS) @@ -28,7 +28,7 @@ gen_config.h: .config # Actual build toyfiles = main.c toys/*.c lib/*.c -toybox: gen_config.h $(toyfiles) lib/lib.h toys.h +toybox: gen_config.h $(toyfiles) toys/toylist.h lib/lib.h toys.h $(CC) -Wall -Os -s -funsigned-char $(CFLAGS) -I . \ $(toyfiles) -o toybox -ffunction-sections -fdata-sections -Wl,--gc-sections |