1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-26 00:12:31 +01:00

Changed WM_OSDEP to use Conditional instead of Substitution

The automake documentation states that using substitution inside the
list of SOURCES will not work and calls for not doing it. The use
of 'EXTRA_xxx' made things look like they worked but is probably not
enough for corner cases.

This patches switches to the conditional method which will be safe.
This commit is contained in:
Christophe CURIS
2013-05-10 18:35:42 +02:00
committed by Carlos R. Mafra
parent 7e424bf232
commit 664ab79add
2 changed files with 16 additions and 3 deletions

View File

@@ -49,7 +49,6 @@ wmaker_SOURCES = \
menu.h \
misc.c \
misc.h \
osdep_@WM_OSDEP@.c \
monitor.c \
motif.c \
motif.h \
@@ -105,7 +104,18 @@ wmaker_SOURCES = \
workspace.c \
workspace.h
EXTRA_wmaker_SOURCES = osdep_bsd.c osdep_darwin.c osdep_linux.c osdep_stub.c
if WM_OSDEP_BSD
wmaker_SOURCES += osdep_bsd.c
endif
if WM_OSDEP_DARWIN
wmaker_SOURCES += osdep_darwin.c
endif
if WM_OSDEP_LINUX
wmaker_SOURCES += osdep_linux.c
endif
if WM_OSDEP_GENERIC
wmaker_SOURCES += osdep_stub.c
endif
AM_CFLAGS =