From d137bf2485050b54bb0ac65ef543ba24f18fabbe Mon Sep 17 00:00:00 2001 From: knolax <1339802534.kk@gmail.com> Date: Thu, 16 Feb 2017 10:46:14 -0500 Subject: initial commit --- makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 makefile (limited to 'makefile') 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 -- cgit v1.1