diff options
Diffstat (limited to 'smelt/glfw/CxImage/makefile')
-rw-r--r-- | smelt/glfw/CxImage/makefile | 12 |
1 files changed, 12 insertions, 0 deletions
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 ../ |