From 44dd1fc7f5a589990c8cdeed1032c1fe1c31b1e2 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 19 Aug 2020 16:30:33 +0200 Subject: [PATCH] Trying to configure android_native_app_glue target compilation --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 9c32417a4..85498f3e1 100644 --- a/src/Makefile +++ b/src/Makefile @@ -464,7 +464,7 @@ ifeq ($(RAYLIB_MODULE_PHYSAC),TRUE) endif ifeq ($(PLATFORM),PLATFORM_ANDROID) - OBJS += $(NATIVE_APP_GLUE)/android_native_app_glue.o + OBJS += android_native_app_glue.o endif # Default target entry @@ -583,7 +583,7 @@ physac.o : physac.c physac.h $(CC) -c $< $(CFLAGS) $(INCLUDE_PATHS) -D$(PLATFORM) -DPHYSAC_IMPLEMENTATION # Compile android_native_app_glue module -$(NATIVE_APP_GLUE)/android_native_app_glue.o : android_native_app_glue.c +android_native_app_glue.o : $(NATIVE_APP_GLUE)/android_native_app_glue.c $(CC) -c $< $(CFLAGS) $(INCLUDE_PATHS)