diff --git a/Makefile.minimal b/Makefile.minimal index 0a98a7eef..676679ec6 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 08d595360..69fec6368 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 3e6da0a4a..e37719664 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 9ce8a7f21..f6d0c691e 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 \