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.
 
 
 
 

9 lines
365 B

  1. INC=.
  2. all:
  3. g++ -g -I${INC} -c utils/hex_to_base64.cpp -o obj/hex_to_base64.o
  4. g++ -g -I${INC} -c utils/utils_tester.cpp -o obj/utils_tester.o
  5. g++ -g -I${INC} -c utils/xor.c -o obj/xor.o
  6. g++ -g -I${INC} -c set1/xor_char_finder.cpp -o obj/xor_char_finder.o
  7. g++ -g -lpthread -o utils_tester obj/hex_to_base64.o obj/utils_tester.o obj/xor_char_finder.o obj/xor.o