summaryrefslogtreecommitdiff
path: root/example/makefile
diff options
context:
space:
mode:
authorknolax <1339802534.kk@gmail.com>2017-02-28 11:07:10 -0500
committerknolax <1339802534.kk@gmail.com>2017-02-28 11:07:10 -0500
commit8eb0808fecb8c57eff877fddf38db91b1f067921 (patch)
tree1d7a5a795686e3c607ed93993c34c7a377b7c161 /example/makefile
initial commit, this is the gfx library which serves as a crappy wrapper for SDL.
Diffstat (limited to 'example/makefile')
-rw-r--r--example/makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/example/makefile b/example/makefile
new file mode 100644
index 0000000..9643478
--- /dev/null
+++ b/example/makefile
@@ -0,0 +1,6 @@
+main : main.o
+ g++ main.o -o main -L/home/knolax/code/cpp/gfx -lgui -lgfx -lSDL2 -lSDL2_ttf
+main.o : main.cpp
+ g++ -c main.cpp -I/home/knolax/code/cpp/gfx
+clean :
+ rm gfx.o main.o gui.o