moonlight-nx/Makefile

235 lines
7.8 KiB
Makefile
Raw Normal View History

2020-05-01 17:42:14 +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
arch = intel
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
else ifneq ($(findstring win,$(shell uname -a)),)
platform = win
endif
endif
# system platform
system_platform = unix
ifeq ($(shell uname -a),)
EXE_EXT = .exe
system_platform = win
else ifneq ($(findstring Darwin,$(shell uname -a)),)
system_platform = osx
arch = intel
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
else ifneq ($(findstring MINGW,$(shell uname -a)),)
system_platform = win
endif
TARGET_NAME = moonlight
ifeq ($(platform), unix)
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
GL_LIB := -lGL
2020-05-11 10:21:27 +00:00
LIBS += -lpthread -lGL -luuid -Lthird_party/opus/lib
2020-05-01 17:42:14 +00:00
else ifneq (,$(findstring osx,$(platform)))
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC
SHARED := -dynamiclib
GL_LIB := -framework OpenGL
CFLAGS += -DOSX
INCLUDES += -I/usr/local/include -I/usr/local/opt/openssl@1.1/include
2020-05-01 23:00:30 +00:00
LIBS += -L/usr/local/lib -L/usr/local/opt/openssl@1.1/lib
2020-05-01 17:42:14 +00:00
ifeq ($(arch),ppc)
CFLAGS += -D__ppc__ -DOSX_PPC
endif
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
2020-05-01 23:00:30 +00:00
fpic += -mmacosx-version-min=10.12
2020-05-02 16:41:02 +00:00
# Lakka Switch
else ifeq ($(platform), lakka-switch)
2020-05-05 20:39:38 +00:00
TOOLCHAIN := /home/rock88/Documents/Lakka-LibreELEC/build.Lakka-L4T.aarch64-2.2-devel/toolchain
CC = $(TOOLCHAIN)/bin/aarch64-libreelec-linux-gnueabi-gcc
CXX = $(TOOLCHAIN)/bin/aarch64-libreelec-linux-gnueabi-c++
2020-05-01 17:42:14 +00:00
TARGET := $(TARGET_NAME)_libretro.so
2020-05-02 16:41:02 +00:00
DEFINES += -mcpu=cortex-a57+crypto+crc+fp+simd -mabi=lp64 -Wno-psabi -mtune=cortex-a57 \
2020-05-02 17:13:52 +00:00
-march=armv8-a+crypto+crc+fp+simd -fomit-frame-pointer -Wall -pipe -fPIC -pthread \
-D__LAKKA_SWITCH__
2020-05-12 19:28:10 +00:00
INCLUDES += -Ithird_party/opus/include -Ithird_party/ffmpeg/include \
-I$(TOOLCHAIN)/aarch64-libreelec-linux-gnueabi/sysroot/usr/include -I$(TOOLCHAIN)/include
LIBS += -Lthird_party/opus/lib -Lthird_party/ffmpeg/lib \
-lpthread -lGL -luuid -lvdpau -lX11
2020-05-01 17:42:14 +00:00
SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined
else
CC = gcc
TARGET := $(TARGET_NAME)_libretro.dll
SHARED := -shared -static-libgcc -static-libstdc++ -s -Wl,--version-script=link.T -Wl,--no-undefined
GL_LIB := -lopengl32
CFLAGS += -I..
endif
ifeq ($(DEBUG), 1)
CFLAGS += -O0 -g
2020-05-03 14:27:44 +00:00
CXXFLAGS += -O0 -g
2020-05-01 17:42:14 +00:00
else
CFLAGS += -O3
endif
ifneq (,$(findstring qnx,$(platform)))
CFLAGS += -Wc,-std=c99
else
CFLAGS += -std=gnu99
endif
LIBGAMESTREAM_SOURCES = \
libgamestream/client.c \
libgamestream/http.c \
libgamestream/mkcert.c \
libgamestream/xml.c
2020-05-01 23:00:30 +00:00
MOONLIGHT_LIBRETRO_C_SOURCES = \
2020-05-01 17:42:14 +00:00
src/glsym/rglgen.c \
src/nanogui_resources/nanogui_resources.c \
2020-05-12 13:04:05 +00:00
src/moonlight_libretro.c
2020-05-01 23:00:30 +00:00
MOONLIGHT_LIBRETRO_CXX_SOURCES = \
2020-05-02 14:57:02 +00:00
src/ui/windows/AddHostWindow.cpp \
src/ui/windows/ContentWindow.cpp \
src/ui/windows/MainWindow.cpp \
2020-05-02 18:15:23 +00:00
src/ui/windows/StreamWindow.cpp \
2020-05-02 14:57:02 +00:00
src/ui/windows/AppListWindow.cpp \
2020-05-05 19:44:03 +00:00
src/ui/windows/SettingsWindow.cpp \
src/ui/buttons/AddHostButton.cpp \
2020-05-02 14:57:02 +00:00
src/ui/buttons/AppButton.cpp \
src/ui/buttons/HostButton.cpp \
2020-05-01 17:42:14 +00:00
src/ui/Application.cpp \
src/ui/LoadingOverlay.cpp \
2020-05-03 14:27:44 +00:00
src/GameStreamClient.cpp \
2020-05-05 19:44:03 +00:00
src/Settings.cpp \
2020-05-12 13:04:05 +00:00
src/InputController.cpp \
src/streaming/MoonlightSession.cpp \
src/streaming/audio/RetroAudioRenderer.cpp \
src/streaming/ffmpeg/FFmpegVideoDecoder.cpp \
src/streaming/video/GLVideoRenderer.cpp
2020-05-01 17:42:14 +00:00
MOONLIGHT_COMMON_C_SOURCES = \
third_party/moonlight-common-c/enet/callbacks.c \
third_party/moonlight-common-c/enet/compress.c \
third_party/moonlight-common-c/enet/host.c \
third_party/moonlight-common-c/enet/list.c \
third_party/moonlight-common-c/enet/packet.c \
third_party/moonlight-common-c/enet/peer.c \
third_party/moonlight-common-c/enet/protocol.c \
third_party/moonlight-common-c/enet/unix.c \
third_party/moonlight-common-c/enet/win32.c \
third_party/moonlight-common-c/reedsolomon/rs.c \
third_party/moonlight-common-c/src/AudioStream.c \
third_party/moonlight-common-c/src/ByteBuffer.c \
third_party/moonlight-common-c/src/Connection.c \
third_party/moonlight-common-c/src/ControlStream.c \
third_party/moonlight-common-c/src/FakeCallbacks.c \
third_party/moonlight-common-c/src/InputStream.c \
third_party/moonlight-common-c/src/LinkedBlockingQueue.c \
third_party/moonlight-common-c/src/Misc.c \
third_party/moonlight-common-c/src/Platform.c \
third_party/moonlight-common-c/src/PlatformSockets.c \
third_party/moonlight-common-c/src/RtpFecQueue.c \
third_party/moonlight-common-c/src/RtpReorderQueue.c \
third_party/moonlight-common-c/src/RtspConnection.c \
third_party/moonlight-common-c/src/RtspParser.c \
third_party/moonlight-common-c/src/SdpGenerator.c \
third_party/moonlight-common-c/src/SimpleStun.c \
third_party/moonlight-common-c/src/VideoDepacketizer.c \
third_party/moonlight-common-c/src/VideoStream.c
2020-05-01 23:00:30 +00:00
NANOGUI_C_SOURCES = \
third_party/nanogui/ext/nanovg/src/nanovg.c
NANOGUI_CXX_SOURCES = \
third_party/nanogui/src/widget.cpp \
third_party/nanogui/src/button.cpp \
third_party/nanogui/src/common.cpp \
third_party/nanogui/src/screen.cpp \
third_party/nanogui/src/checkbox.cpp \
third_party/nanogui/src/vscrollpanel.cpp \
third_party/nanogui/src/colorpicker.cpp \
third_party/nanogui/src/textarea.cpp \
third_party/nanogui/src/shader_gl.cpp \
third_party/nanogui/src/canvas.cpp \
third_party/nanogui/src/window.cpp \
third_party/nanogui/src/graph.cpp \
third_party/nanogui/src/popup.cpp \
third_party/nanogui/src/layout.cpp \
third_party/nanogui/src/texture.cpp \
third_party/nanogui/src/texture_gl.cpp \
third_party/nanogui/src/tabwidget.cpp \
third_party/nanogui/src/shader.cpp \
third_party/nanogui/src/imageview.cpp \
third_party/nanogui/src/progressbar.cpp \
third_party/nanogui/src/combobox.cpp \
third_party/nanogui/src/theme.cpp \
third_party/nanogui/src/traits.cpp \
third_party/nanogui/src/label.cpp \
third_party/nanogui/src/opengl.cpp \
third_party/nanogui/src/renderpass_gl.cpp \
third_party/nanogui/src/imagepanel.cpp \
third_party/nanogui/src/colorwheel.cpp \
third_party/nanogui/src/messagedialog.cpp \
third_party/nanogui/src/textbox.cpp \
third_party/nanogui/src/slider.cpp \
third_party/nanogui/src/popupbutton.cpp
2020-05-01 17:42:14 +00:00
2020-05-01 23:00:30 +00:00
INCLUDES += \
2020-05-02 18:15:23 +00:00
-Isrc -Isrc/decoders -Isrc/glsym \
2020-05-01 23:00:30 +00:00
-Isrc/nanogui_resources \
2020-05-02 14:57:02 +00:00
-Isrc/ui -Isrc/ui/buttons -Isrc/ui/windows \
2020-05-12 13:04:05 +00:00
-Isrc/streaming -Isrc/streaming/audio -Isrc/streaming/video -Isrc/streaming/ffmpeg \
2020-05-01 23:00:30 +00:00
-Ilibgamestream \
-Ithird_party/moonlight-common-c/reedsolomon \
-Ithird_party/moonlight-common-c/src \
-Ithird_party/moonlight-common-c/enet/include \
-Ithird_party/nanogui/include \
2020-05-05 20:39:38 +00:00
-Ithird_party/nanogui/ext/nanovg/src \
-Ithird_party/json/single_include/nlohmann
2020-05-01 23:00:30 +00:00
C_SOURCES = $(LIBGAMESTREAM_SOURCES) $(MOONLIGHT_LIBRETRO_C_SOURCES) $(MOONLIGHT_COMMON_C_SOURCES) $(NANOGUI_C_SOURCES)
CXX_SOURCES = $(MOONLIGHT_LIBRETRO_CXX_SOURCES) $(NANOGUI_CXX_SOURCES)
OBJECTS := $(C_SOURCES:.c=.o) $(CXX_SOURCES:.cpp=.o)
2020-05-02 16:41:02 +00:00
DEFINES += -DNANOGUI_USE_OPENGL -DNVG_STB_IMAGE_IMPLEMENTATION -DNANOGUI_NO_GLFW \
-DHAS_SOCKLEN_T -DHAS_POLL -DHAS_FCNTL -D_GNU_SOURCE -D__LIBRETRO__
2020-05-02 16:41:02 +00:00
2020-05-01 23:00:30 +00:00
CFLAGS += -Wall -pedantic $(fpic) -std=gnu11 $(DEFINES)
2020-05-09 16:13:18 +00:00
CXXFLAGS += -std=gnu++17 $(DEFINES)
2020-05-01 23:00:30 +00:00
2020-05-03 16:33:05 +00:00
LIBS += -lcrypto -lssl -lcurl -lz -lexpat -lopus \
2020-05-12 19:28:10 +00:00
-lavcodec -lavformat -lavutil -lavdevice -lstdc++ -lswresample
2020-05-01 17:42:14 +00:00
2020-05-02 16:41:02 +00:00
OBJECTS += src/glsym/glsym_gl.o
LIBS += $(GL_LIB)
2020-05-01 17:42:14 +00:00
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CC) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) $(LIBS) -lm $(EXTRA_GL_LIBS)
%.o: %.c
$(CC) $(CFLAGS) $(fpic) $(INCLUDES) -c -o $@ $<
%.o: %.cpp
2020-05-01 23:00:30 +00:00
$(CXX) $(CXXFLAGS) $(fpic) $(INCLUDES) -c -o $@ $<
2020-05-01 17:42:14 +00:00
clean:
rm -f $(OBJECTS) $(TARGET)
run: $(TARGET)
/Applications/RetroArch.app/Contents/MacOS/RetroArch -L $(TARGET)
.PHONY: clean