summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorknolax <1339802534.kk@gmail.com>2017-02-16 10:46:14 -0500
committerknolax <1339802534.kk@gmail.com>2017-02-16 10:46:14 -0500
commitd137bf2485050b54bb0ac65ef543ba24f18fabbe (patch)
treef66009aa6db3c88c715b5e23d874f22b1c530a4e /makefile
initial commit
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..13e9f38
--- /dev/null
+++ b/makefile
@@ -0,0 +1,8 @@
+main : libglgfx.a
+libglgfx.a : glgfx.o
+ ar ru libglgfx.a glgfx.o
+ ranlib libglgfx.a
+glgfx.o : glgfx.cpp
+ g++ -c glgfx.cpp -I/home/knolax/code/cpp/gfx
+clean :
+ rm glgfx.a libglgfx.a glgfx.o