This commit is contained in:
2025-06-10 11:54:50 +02:00
parent fe82635333
commit 7351838abb
14 changed files with 622 additions and 0 deletions

13
tp3/Makefile Normal file
View File

@@ -0,0 +1,13 @@
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