mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 12:58:08 +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>
22 lines
569 B
Makefile
22 lines
569 B
Makefile
## automake input file for WINGs - Examples
|
|
|
|
AUTOMAKE_OPTIONS =
|
|
|
|
|
|
noinst_PROGRAMS = fontl puzzle colorpick
|
|
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFT_LIBS@ @INTLIBS@ @XLIBS@
|
|
|
|
colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
fontl_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
puzzle_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@
|