aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..6d3ac12
--- /dev/null
+++ b/makefile
@@ -0,0 +1,10 @@
+cpprender: source/*
+#cd object_files
+ g++ -g -c source/*
+#cd ..
+ mv *\.o object_files/
+ g++ object_files/* -o cpprender -lsfml-graphics -lsfml-window -lsfml-system
+ rm source/*gch
+
+run: cpprender
+ ./cpprender