aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--README.md12
-rw-r--r--makefile10
-rw-r--r--src/mandelbrot.c3
3 files changed, 24 insertions, 1 deletions
diff --git a/README.md b/README.md
index 601421f..5dc1633 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,11 @@
-# complex-fractals \ No newline at end of file
+# Complex Fractals
+
+Final Project for Moravian University CSCI 392: High Performance Computing.
+
+## Building
+
+## Running
+
+## Contributors
+
+* JP Appel
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..fc582ae
--- /dev/null
+++ b/makefile
@@ -0,0 +1,10 @@
+CC :=
+CPPFLAGS :=
+LDFLAGS :=
+
+all:
+
+clean:
+ rm -rf
+
+.PHONY: all clean
diff --git a/src/mandelbrot.c b/src/mandelbrot.c
new file mode 100644
index 0000000..094ea0e
--- /dev/null
+++ b/src/mandelbrot.c
@@ -0,0 +1,3 @@
+int main(const int argc, const char* argv[]){
+ return 0;
+}