Add another warning check and a missing dependency.
authorRob Landley <rob@landley.net>
Sat, 25 Nov 2006 18:32:01 +0000 (13:32 -0500)
committerRob Landley <rob@landley.net>
Sat, 25 Nov 2006 18:32:01 +0000 (13:32 -0500)
Makefile

index 881e2c3..f7352f1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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