diff options
Diffstat (limited to 'utils/sbinfo/Makefile')
-rw-r--r-- | utils/sbinfo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/sbinfo/Makefile b/utils/sbinfo/Makefile index 6a857b0b0c..8b2cd2649d 100644 --- a/utils/sbinfo/Makefile +++ b/utils/sbinfo/Makefile @@ -2,8 +2,8 @@ TGT = sbinfo all: $(TGT) -$(TGT): sbinfo.c - $(CC) -std=c99 -o $(TGT) -W -Wall sbinfo.c aes128_impl.c +$(TGT): sbinfo.c crc.c crypto.h aes128.c sha1.c + $(CC) -g -std=c99 -o $(TGT) -W -Wall sbinfo.c aes128.c crc.c sha1.c clean: rm -fr $(TGT) |