2020-09-05 16:02:16 -04:00
|
|
|
#INCLUDES += $(X_CFLAGS)
|
|
|
|
|
|
|
|
if conf_data.get('CONFIG_OS_BEOS')
|
|
|
|
subdir('beos')
|
|
|
|
endif
|
2022-05-09 12:53:36 -04:00
|
|
|
if conf_data.get('CONFIG_OS_DOS')
|
|
|
|
subdir('dos')
|
|
|
|
endif
|
2020-09-05 16:02:16 -04:00
|
|
|
if conf_data.get('CONFIG_OS_OS2')
|
|
|
|
subdir('os2')
|
|
|
|
endif
|
|
|
|
if conf_data.get('CONFIG_OS_RISCOS')
|
|
|
|
subdir('riscos')
|
|
|
|
endif
|
2022-03-13 11:53:00 -04:00
|
|
|
if conf_data.get('CONFIG_OS_UNIX')
|
2020-09-05 16:02:16 -04:00
|
|
|
subdir('unix')
|
|
|
|
endif
|
|
|
|
if conf_data.get('CONFIG_OS_WIN32')
|
|
|
|
subdir('win32')
|
|
|
|
endif
|
|
|
|
|
|
|
|
srcs += files('getifaddrs.c', 'newwin.c', 'osdep.c', 'signals.c', 'stub.c', 'sysname.c')
|