mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-25 16:02:33 +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.
31 lines
672 B
Makefile
31 lines
672 B
Makefile
## automake input file for WINGs
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
# is this a kluge? if so, how should i do it?
|
|
includedir = @includedir@/WINGs
|
|
|
|
include_HEADERS = wtableview.h wtabledelegates.h
|
|
|
|
|
|
lib_LTLIBRARIES = libExtraWINGs.la
|
|
|
|
noinst_PROGRAMS = test
|
|
|
|
EXTRA_DIST =
|
|
|
|
libExtraWINGs_la_SOURCES = \
|
|
wtableview.c \
|
|
wtabledelegates.c \
|
|
wtableview.h \
|
|
wtabledelegates.h
|
|
|
|
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
|