Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GCC = g++
- FLAGS = -g
- all: cipher decipher
- cipher: main.o cipher.o
- $(GCC) $(FLAGS) main.o cipher.o -o cipher
- decipher: main.o cipher.o
- $(GCC) $(FLAGS) main.o cipher.o -o decipher
- cipher.o: cipher.cpp
- $(GCC) $(FLAGS) -c cipher.cpp
- main.o: main.cpp
- $(GCC) $(FLAGS) -c main.cpp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement