2e3c8ec5a1
This is a feature that was present in the pre-autotools configure script. Note a syntax change: ./configure --lang foo is now ./configure --with-lang=foo Also remove the .xpm files in the root directory, as they are created during configuration.
8 lines
293 B
Makefile
8 lines
293 B
Makefile
bin_PROGRAMS = wmclock
|
|
wmclock_SOURCES = dynlist.c dynlist.h wmclock.c \
|
|
xpm/date.xpm xpm/led.xpm xpm/mask.xbm xpm/mask.xbm
|
|
AM_CFLAGS = $(x11_CFLAGS) $(xpm_CFLAGS) $(xext_CFLAGS)
|
|
LIBS += $(x11_LIBS) $(xpm_LIBS) $(xext_LIBS)
|
|
dist_man_MANS = wmclock.man
|
|
nobase_dist_pkgdata_DATA = lang.*/*.xpm
|