Remove misnamed test
[yaffs2.git] / linux-tests / Makefile
1 CFLAGS += -Wall -D_FILE_OFFSET_BITS=64
2
3 TARGETS = xattrtest writebigsparse verifybigsparse
4 all: $(TARGETS)
5
6 xattrtest: xattrtest.c
7         gcc $(CFLAGS) -o $@ $<
8
9 writebigsparse: writebigsparse.c
10         gcc $(CFLAGS) -o $@ $<
11
12 verifybigsparse: verifybigsparse.c
13         gcc $(CFLAGS) -o $@ $<
14         
15
16 .PHONEY: clean
17 clean:
18         rm -f $(TARGETS)