mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
Not finished yet, but I added to motivate myself and others. The goal is to get a few seconds faster builds. autotools still will be available.
20 lines
410 B
Meson
20 lines
410 B
Meson
#INCLUDES += $(X_CFLAGS)
|
|
|
|
if conf_data.get('CONFIG_OS_BEOS')
|
|
subdir('beos')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_OS2')
|
|
subdir('os2')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_RISCOS')
|
|
subdir('riscos')
|
|
endif
|
|
if conf_data.get('CONFIG_OS_UNIX') == 1
|
|
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')
|