mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
b69ce3472d
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
31 lines
487 B
Makefile
31 lines
487 B
Makefile
PROGRAMS = wrc
|
|
EXTRALIBS = $(GETTEXTPO_LIBS)
|
|
|
|
C_SRCS = \
|
|
dumpres.c \
|
|
genres.c \
|
|
newstruc.c \
|
|
po.c \
|
|
translation.c \
|
|
utils.c \
|
|
wpp.c \
|
|
wrc.c \
|
|
writeres.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)
|