Makefile (631d7d950a2f2706f5c86858402c1ec50b9801f1) | Makefile (9f5fae2fe6dc35b46bf56183f11398451851cb3f) |
---|---|
1CC=gcc 2CFLAGS = -g -Wall -Werror 3headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \ 4 transaction.h 5objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \ | 1CC=gcc 2CFLAGS = -g -Wall -Werror 3headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h list.h \ 4 transaction.h 5objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o \ |
6 root-tree.o dir-item.o hash.o file-item.o inode-item.o | 6 root-tree.o dir-item.o hash.o file-item.o inode-item.o \ 7 inode-map.o \ |
7 8# if you don't have sparse installed, use ls instead 9CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \ 10 -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef 11check=sparse $(CHECKFLAGS) 12#check=ls 13 14.c.o: --- 22 unchanged lines hidden --- | 8 9# if you don't have sparse installed, use ls instead 10CHECKFLAGS=-D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise \ 11 -Wcontext -Wcast-truncate -Wuninitialized -Wshadow -Wundef 12check=sparse $(CHECKFLAGS) 13#check=ls 14 15.c.o: --- 22 unchanged lines hidden --- |