Programme passerelle dans le cadre du projet Prosecco
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
276 B

  1. # Makefile pour tester la librairie
  2. pass : pass.o chiffrePF.o
  3. cc -o pass pass.o chiffrePF.o -pthread
  4. pass.o : pass.c pass.h chiffrePF.h
  5. cc -c -Wall -D_REENTRANT pass.c
  6. chiffrePF.o : chiffrePF.c chiffrePF.h
  7. cc -c -Wall -D_REENTRANT chiffrePF.c
  8. clean :
  9. rm -f pass *.o