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