mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
51 lines
1016 B
Makefile
51 lines
1016 B
Makefile
|
|
||
|
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
|
||
|
else ifeq ($(platform), osx)
|
||
|
TARGET := libretro.dylib
|
||
|
fpic := -fPIC
|
||
|
SHARED := -dynamiclib
|
||
|
else
|
||
|
CC = gcc
|
||
|
TARGET := retro.dll
|
||
|
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
|
||
|
endif
|
||
|
|
||
|
ifeq ($(DEBUG), 1)
|
||
|
CFLAGS += -O0 -g
|
||
|
else
|
||
|
CFLAGS += -O3
|
||
|
endif
|
||
|
|
||
|
OBJECTS := libretro-test.o
|
||
|
CFLAGS += -std=gnu99 -Wall -pedantic $(fpic)
|
||
|
|
||
|
all: $(TARGET)
|
||
|
|
||
|
$(TARGET): $(OBJECTS)
|
||
|
$(CC) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) -lm
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) $(CFLAGS) -c -o $@ $<
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJECTS) $(TARGET)
|
||
|
|
||
|
.PHONY: clean
|
||
|
|