RetroArch/libretro-test-gl/Makefile

61 lines
1.2 KiB
Makefile
Raw Normal View History

2013-03-27 15:15:15 +00:00
ifeq ($(platform),)
platform = unix
ifeq ($(shell uname -a),)
platform = win
else ifneq ($(findstring MINGW,$(shell uname -a)),)
platform = win
else ifneq ($(findstring Darwin,$(shell uname -a)),)
platform = osx
else ifneq ($(findstring win,$(shell uname -a)),)
platform = win
endif
endif
ifeq ($(platform), unix)
TARGET := libretro.so
fpic := -fPIC
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
2013-03-28 11:46:40 +00:00
GL_LIB := -lGL
2013-03-27 15:15:15 +00:00
else ifeq ($(platform), osx)
TARGET := libretro.dylib
fpic := -fPIC
SHARED := -dynamiclib
2013-03-28 11:46:40 +00:00
GL_LIB := -framework OpenGL
2013-03-27 15:15:15 +00:00
else
CC = gcc
TARGET := retro.dll
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
2013-03-28 11:46:40 +00:00
GL_LIB := -lopengl32
2013-03-27 15:15:15 +00:00
endif
ifeq ($(DEBUG), 1)
CFLAGS += -O0 -g
else
CFLAGS += -O3
endif
OBJECTS := libretro-test.o
CFLAGS += -std=gnu99 -Wall -pedantic $(fpic)
2013-03-28 11:46:40 +00:00
ifeq ($(GLES), 1)
CFLAGS += -DGLES
LIBS += -lGLESv2
else
LIBS += $(GL_LIB)
endif
2013-03-27 15:15:15 +00:00
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CC) $(fpic) $(SHARED) $(LIBS) $(INCLUDES) -o $@ $(OBJECTS) -lm
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f $(OBJECTS) $(TARGET)
.PHONY: clean