mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
234710e8f7
winedump can be used to debug resource contents. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
28 lines
443 B
Makefile
28 lines
443 B
Makefile
PROGRAMS = wrc
|
|
EXTRALIBS = $(GETTEXTPO_LIBS)
|
|
|
|
C_SRCS = \
|
|
genres.c \
|
|
newstruc.c \
|
|
po.c \
|
|
utils.c \
|
|
wpp.c \
|
|
wrc.c
|
|
|
|
LEX_SRCS = \
|
|
parser.l \
|
|
ppl.l
|
|
|
|
BISON_SRCS = \
|
|
parser.y \
|
|
ppy.y
|
|
|
|
MANPAGES = wrc.man.in
|
|
|
|
wrc_EXTRADEFS = \
|
|
-DNLSDIR="\"${nlsdir}\"" \
|
|
-DINCLUDEDIR="\"${includedir}\"" \
|
|
-DBIN_TO_NLSDIR=\"`${MAKEDEP} -R ${bindir} ${nlsdir}`\" \
|
|
-DBIN_TO_INCLUDEDIR=\"`${MAKEDEP} -R ${bindir} ${includedir}`\"
|
|
|
|
INSTALL_DEV = $(PROGRAMS)
|