diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-04-13 13:39:03 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-04-13 13:39:03 -0400 |
| commit | 0090c2e9056d929c802515f9ca945a409c14be07 (patch) | |
| tree | 0b7c355bc81396eca1f7b042079674a4dc668e8e | |
| parent | 555f9d8f65be7ebcb0dd19e0966a3b133db4e69a (diff) | |
some intial project setup
| -rw-r--r-- | README.md | 12 | ||||
| -rw-r--r-- | makefile | 10 | ||||
| -rw-r--r-- | src/mandelbrot.c | 3 |
3 files changed, 24 insertions, 1 deletions
@@ -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; +} |
