mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-23 14:42:29 +01:00
65 lines
1.0 KiB
Makefile
65 lines
1.0 KiB
Makefile
SUBDIRS = xpm tiff po
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
wpexecbindir = @wprefsdir@
|
|
|
|
wpexecbin_PROGRAMS = WPrefs
|
|
|
|
wpdatadir = @wprefsdir@
|
|
|
|
wpdata_DATA = WPrefs.tiff WPrefs.xpm
|
|
|
|
EXTRA_DIST = $(wpdata_DATA)
|
|
|
|
WPrefs_SOURCES = \
|
|
main.c \
|
|
WPrefs.c \
|
|
WPrefs.h \
|
|
Appearance.c \
|
|
Configurations.c \
|
|
Expert.c \
|
|
Focus.c \
|
|
Font.c \
|
|
Icons.c \
|
|
KeyboardSettings.c \
|
|
KeyboardShortcuts.c \
|
|
Menu.c \
|
|
MenuPreferences.c \
|
|
MouseSettings.c \
|
|
NoMenuAlert.c \
|
|
Paths.c \
|
|
Preferences.c \
|
|
TexturePanel.c \
|
|
TexturePanel.h \
|
|
Themes.c \
|
|
WindowHandling.c \
|
|
Workspace.c \
|
|
double.c \
|
|
double.h \
|
|
editmenu.c \
|
|
editmenu.h \
|
|
imagebrowser.c \
|
|
MenuGuru.c \
|
|
xmodifier.c
|
|
|
|
CPPFLAGS = @CPPFLAGS@ -DLOCALEDIR=\"$(NLSDIR)\"
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/wrlib \
|
|
-I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@
|
|
|
|
WPrefs_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.a
|
|
|
|
WPrefs_LDADD = \
|
|
$(top_builddir)/WINGs/libWINGs.a\
|
|
$(top_builddir)/wrlib/libwraster.la \
|
|
@LIBRARY_SEARCH_PATH@ \
|
|
@LIBPL@ \
|
|
@GFXLIBS@ \
|
|
@XLIBS@ \
|
|
@X_EXTRA_LIBS@ \
|
|
@INTLIBS@ \
|
|
-lm
|
|
|