btrfs-progs/Makefile

17 lines
297 B
Makefile
Raw Normal View History

2007-02-24 11:24:44 +00:00
CFLAGS = -g -Wall
headers = radix-tree.h ctree.h disk-io.h kerncompat.h print-tree.h
objects = ctree.o disk-io.o radix-tree.o mkfs.o extent-tree.o print-tree.o
2007-02-02 14:18:22 +00:00
2007-02-24 11:24:44 +00:00
#.c.o:
# $(CC) $(CFLAGS) -c $<
2007-02-02 14:18:22 +00:00
2007-02-24 11:24:44 +00:00
ctree : $(objects)
gcc $(CFLAGS) -o ctree $(objects)
2007-02-24 11:24:44 +00:00
$(objects) : $(headers)
clean :
2007-02-02 14:18:22 +00:00
rm ctree *.o