Skip to content

Instantly share code, notes, and snippets.

@davidshepherd7
Created April 12, 2015 10:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidshepherd7/5fec3415d918bfb0add4 to your computer and use it in GitHub Desktop.
Save davidshepherd7/5fec3415d918bfb0add4 to your computer and use it in GitHub Desktop.
coursera crypto assignment 4: fixed Makefile
all: vrfy mac
vrfy: vrfy.o cbcmac.o aes_core.o
gcc -o vrfy vrfy.o cbcmac.o aes_core.o -lpthread
mac: mac.o cbcmac.o aes_core.o
gcc -o mac mac.o cbcmac.o aes_core.o -lpthread
clean:
rm -f mac.o aes_core.o cbcmac.o mac.o vrfy.o vrfy mac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment