Makefile 353 B

12345678910111213141516
  1. #
  2. # Makefile for quickcypher, a simple rotating substitution cypher.
  3. #
  4. # This program is part of quickcypher, available under the licensing terms of
  5. # the GNU GPL version 3 or newer. Please see the LICENSE file for more
  6. # information.
  7. #
  8. # Copyright Klaus Zimmermann 2015
  9. #
  10. CC=g++ -Wall -std=c++11
  11. BINARY=quickcypher
  12. all:
  13. $(CC) -o $(BINARY) main.cpp