initial commit
[mnenc] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100755 (executable)
index 0000000..3fdbbe9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+encryptor : main.o password.o mnenc.o
+       g++ -o mnenc -g -Wall main.o password.o mnenc.o
+
+main.o: main.cpp password.hpp mnenc.hpp
+       g++ -c -g -Wall main.cpp
+
+password.o: password.cpp password.hpp
+       g++ -c -g -Wall password.cpp
+       
+encryptor.o: mnenc.cpp mnenc.hpp
+       g++ -c -g -Wall mnenc.cpp
+       
+clean:
+       rm *.o mnenc