mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 15:12:32 +01:00
As reported by Amadeusz Sławiński, there were a number of debug-only information printed by the menu parser, which had no reason to be in a user package. This patch removes all the hard-coded DEBUG definitions pointed by Amadeusz and adds a new (standard-like) option '--enable-debug' to the configure script, which activates debug stuff for the devs. The default behaviour is now to not have them. As a side effect, the option also disable optimisation, which are generally annoying when trying to run a debugger.
30 lines
852 B
Makefile
30 lines
852 B
Makefile
## automake input file for WINGs - Examples
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
|
|
noinst_PROGRAMS = connect server fontl puzzle colorpick
|
|
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
fontl_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
puzzle_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
connect_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la
|
|
|
|
connect_LDADD = $(top_builddir)/WINGs/libWUtil.la @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
server_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la
|
|
|
|
server_LDADD = $(top_builddir)/WINGs/libWUtil.la @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@
|