mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 07:02:30 +01:00
The goal is to use standard macros, which make code easier to maintain (smaller, more consistent). We still keep the legacy "xfg-config" method because we don't want to drop support for old hardware/software. A side effect is the change in the name of the variables for the makefile, but this goes in favour of consistency. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
31 lines
673 B
Makefile
31 lines
673 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
|
|
|
|
AM_CPPFLAGS = -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 \
|
|
@XFT_LIBS@ @INTLIBS@
|
|
|
|
test_LDADD = wtableview.o wtabledelegates.o $(LDADD)
|