Created
April 12, 2015 10:25
-
-
Save davidshepherd7/5fec3415d918bfb0add4 to your computer and use it in GitHub Desktop.
coursera crypto assignment 4: fixed Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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