mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
The file funcs.h is removed. A new file osdep.h is created to hold the definition for all osdep_*c files. The files .c has been adjusted to include the right header files, removing funcs.h, including osdep.h. Signed-off-by: Rodolfo García Peñas (kix) <kix@kix.es>
144 lines
2.0 KiB
Makefile
144 lines
2.0 KiB
Makefile
AUTOMAKE_OPTIONS =
|
|
|
|
BUILT_SOURCES = wconfig.h
|
|
|
|
bin_PROGRAMS = wmaker
|
|
|
|
EXTRA_DIST =
|
|
|
|
wmaker_SOURCES = \
|
|
GNUstep.h \
|
|
WindowMaker.h \
|
|
actions.c \
|
|
actions.h \
|
|
appicon.c \
|
|
appicon.h \
|
|
application.c \
|
|
application.h \
|
|
appmenu.c \
|
|
appmenu.h \
|
|
balloon.c \
|
|
balloon.h \
|
|
client.c \
|
|
client.h \
|
|
colormap.c \
|
|
colormap.h \
|
|
cycling.c \
|
|
cycling.h \
|
|
def_pixmaps.h \
|
|
defaults.c \
|
|
defaults.h \
|
|
dialog.c \
|
|
dialog.h \
|
|
dock.c \
|
|
dockedapp.c \
|
|
dockedapp.h \
|
|
dock.h \
|
|
event.c \
|
|
event.h \
|
|
extend_pixmaps.h \
|
|
framewin.c \
|
|
framewin.h \
|
|
geomview.c \
|
|
geomview.h \
|
|
osdep.h \
|
|
icon.c \
|
|
icon.h \
|
|
keybind.h \
|
|
main.c \
|
|
main.h \
|
|
menu.c \
|
|
menu.h \
|
|
misc.c \
|
|
misc.h \
|
|
monitor.c \
|
|
monitor.h \
|
|
motif.c \
|
|
motif.h \
|
|
moveres.c \
|
|
pixmap.c \
|
|
pixmap.h \
|
|
placement.c \
|
|
placement.h \
|
|
properties.c \
|
|
properties.h \
|
|
resources.c \
|
|
resources.h \
|
|
rootmenu.c \
|
|
rootmenu.h \
|
|
screen.c \
|
|
screen.h \
|
|
session.h \
|
|
session.c \
|
|
shutdown.h \
|
|
shutdown.c \
|
|
switchpanel.c \
|
|
switchpanel.h \
|
|
stacking.c \
|
|
stacking.h \
|
|
startup.c \
|
|
startup.h \
|
|
superfluous.c \
|
|
superfluous.h \
|
|
switchmenu.c \
|
|
switchmenu.h \
|
|
texture.c \
|
|
texture.h \
|
|
usermenu.c \
|
|
usermenu.h \
|
|
xdnd.h \
|
|
xdnd.c \
|
|
xinerama.h \
|
|
xinerama.c \
|
|
xmodifier.h \
|
|
xmodifier.c \
|
|
xutil.c \
|
|
xutil.h \
|
|
wconfig.h \
|
|
wcore.c \
|
|
wcore.h \
|
|
wdefaults.c \
|
|
wdefaults.h \
|
|
window.c \
|
|
window.h \
|
|
winmenu.c \
|
|
winmenu.h \
|
|
winspector.h \
|
|
winspector.c \
|
|
wmspec.h \
|
|
wmspec.c \
|
|
workspace.c \
|
|
workspace.h
|
|
|
|
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 =
|
|
|
|
AM_CPPFLAGS = \
|
|
$(DFLAGS) -DLOCALEDIR=\"$(NLSDIR)\" \
|
|
-I$(top_srcdir)/wrlib \
|
|
-I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@
|
|
|
|
|
|
wmaker_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.la\
|
|
$(top_builddir)/WINGs/libWUtil.la\
|
|
$(top_builddir)/wrlib/libwraster.la\
|
|
@XLFLAGS@ \
|
|
@LIBXRANDR@ \
|
|
@LIBXINERAMA@ \
|
|
@XLIBS@ \
|
|
@LIBM@ \
|
|
@INTLIBS@
|