diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b6a5723 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vscode +fmseq
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e0cc0a --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +fmseq: main.cpp + g++ main.cpp -lSDL2 -o fmseq
\ No newline at end of file |