I'm trying to add an additional Unix-side .so build to `dlls/wineandroid.drv` (for `dlopen`ing inside activity), and I'm not sure what the correct approach is within the Wine build system. From what I can tell, each `Makefile.in` only supports a single `UNIXLIB`. Also, since this directory uses a nonstandard `Makefile.in` processed by custom makedep logic, it doesn't seem possible to define extra independent targets. `SUBDIRS` doesn't appear to be supported here either. I also tried adding another "dll" without `MODULE`, just defining an `UNIXLIB`, but it still ends up linking against `ntdll.so` automatically, which is not what I want. What I need is a simple standalone `.so`, not tied to Wine's usual module/unixlib assumptions. I would prefer not to introduce ndk-build or CMake for this, and I'm also unsure what the correct way would be to define and especially install such an additional artifact within the existing build system. What is the recommended way to add an extra `.so` in this case? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10569#note_135137