added some more missing sources to standalone makefiles.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
diff --git a/Makefile.minimal b/Makefile.minimal
index 0a98a7e..676679e 100644
--- a/Makefile.minimal
+++ b/Makefile.minimal
@@ -21,6 +21,10 @@ SOURCES = \
src/loadso/dummy/*.c \
src/power/*.c \
src/filesystem/dummy/*.c \
+ src/locale/*.c \
+ src/locale/dummy/*.c \
+ src/misc/*.c \
+ src/misc/dummy/*.c \
src/render/*.c \
src/render/software/*.c \
src/sensor/*.c \
diff --git a/Makefile.pandora b/Makefile.pandora
index 08d5953..69fec63 100644
--- a/Makefile.pandora
+++ b/Makefile.pandora
@@ -29,6 +29,10 @@ SOURCES =
./src/joystick/*.c \
./src/joystick/linux/*.c \
./src/loadso/dlopen/*.c \
+ ./src/locale/*.c \
+ ./src/locale/unix/*.c \
+ ./src/misc/*.c \
+ ./src/misc/unix/*.c \
./src/power/*.c \
./src/sensor/*.c \
./src/sensor/dummy/*.c \
diff --git a/Makefile.psp b/Makefile.psp
index 3e6da0a..e377196 100644
--- a/Makefile.psp
+++ b/Makefile.psp
@@ -36,6 +36,10 @@ OBJS= src/SDL.o \
src/power/SDL_power.o \
src/power/psp/SDL_syspower.o \
src/filesystem/dummy/SDL_sysfilesystem.o \
+ src/locale/SDL_locale.o \
+ src/locale/dummy/SDL_syslocale.o \
+ src/misc/SDL_url.o \
+ src/misc/dummy/SDL_sysurl.o \
src/render/SDL_render.o \
src/render/SDL_yuv_sw.o \
src/render/psp/SDL_render_psp.o \
diff --git a/Makefile.wiz b/Makefile.wiz
index 9ce8a7f..f6d0c69 100644
--- a/Makefile.wiz
+++ b/Makefile.wiz
@@ -14,6 +14,7 @@ TARGET_SHARED = libSDL2.so
SOURCES = \
./src/*.c \
+ ./src/atomic/*.c \
./src/audio/*.c \
./src/audio/disk/*.c \
./src/audio/dsp/*.c \
@@ -21,12 +22,18 @@ SOURCES = \
./src/cpuinfo/*.c \
./src/events/*.c \
./src/file/*.c \
+ ./src/filesystem/unix/*.c \
./src/haptic/*.c \
./src/haptic/linux/*.c \
./src/hidapi/*.c \
./src/joystick/*.c \
./src/joystick/linux/*.c \
./src/loadso/dlopen/*.c \
+ ./src/locale/*.c \
+ ./src/locale/unix/*.c \
+ ./src/misc/*.c \
+ ./src/misc/unix/*.c \
+ ./src/power/*.c \
./src/sensor/*.c \
./src/sensor/dummy/*.c \
./src/stdlib/*.c \