From 7621516c1ca0ecf9f80d094763a1705c32d7458f Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Mon, 12 Feb 2018 23:39:19 +0800 Subject: Now we have unified the GLFW versions (uglily). Also fixed a symbol conflict for the good old msvc. --- smelt/glfw_m/makefile | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 smelt/glfw_m/makefile (limited to 'smelt/glfw_m/makefile') diff --git a/smelt/glfw_m/makefile b/smelt/glfw_m/makefile deleted file mode 100644 index d487454..0000000 --- a/smelt/glfw_m/makefile +++ /dev/null @@ -1,27 +0,0 @@ -CC= g++ -CXXFLAGS= -c -g -O2 -std=c++11 -Wall -I../../include -D_LINUX -fPIC -TARGET= libsmelt.a - -all: objects-normal archive-normal - -dumb: CXXFLAGS += -DENABLE_DUMB -dumb: TARGET= libsmelt-dumb.a -dumb: all - -objects-normal: gfx inp sfx sys - -gfx: - $(CC) gfx_glfw.cpp $(CXXFLAGS) -sfx: - $(CC) sfx_oal.cpp $(CXXFLAGS) -inp: - $(CC) inp_glfw.cpp $(CXXFLAGS) -sys: - $(CC) sys_glfw.cpp $(CXXFLAGS) -archive-normal: - $(AR) rcs $(TARGET) gfx_glfw.o sfx_oal.o inp_glfw.o sys_glfw.o - -clean: - rm -f *.o -clean-all: clean - rm *.a -- cgit v1.2.3