Files
chiffrement/tp3/Makefile

14 lines
255 B
Makefile
Raw Permalink Normal View History

2025-06-10 11:54:50 +02:00
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