all : test_df 

./lib_tea/xtea.o : ./lib_tea/xtea.c
	gcc -c ./lib_tea/xtea.c -o ./lib_tea/xtea.o

df.o : df.c
	gcc -c df.c

test_df.o : test_df.c
	gcc -c test_df.c

test_df : test_df.o df.o ./lib_tea/xtea.o
	gcc -o test_df df.o test_df.o ./lib_tea/xtea.o
