From 0900cc583cc5e51b7c6b378de93cca29e11cb0e9 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Fri, 28 Oct 2016 16:35:21 +0800 Subject: Add the GLFW port, still using OpenGL 2.1 though. And a more detailed readme. --- smelt/glfw/CxImage/makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 smelt/glfw/CxImage/makefile (limited to 'smelt/glfw/CxImage/makefile') diff --git a/smelt/glfw/CxImage/makefile b/smelt/glfw/CxImage/makefile new file mode 100644 index 0000000..725a62a --- /dev/null +++ b/smelt/glfw/CxImage/makefile @@ -0,0 +1,12 @@ +CC= g++ +CXXFLAGS= -c -Os -D_LINUX -Wall -fPIC +AR= ar + +all: objects archive clean + +objects: + $(CC) *.cpp $(CXXFLAGS) +archive: + $(AR) rcs libCxImage.a *.o +clean: + rm *.o && mv libCxImage.a ../ -- cgit v1.2.3