Release 20020509.
[wine] / tools / wrc / Makefile.in
1 DEFS      = -D__WINE__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ../..
4 SRCDIR    = @srcdir@
5 VPATH     = @srcdir@
6 LEXOPT    = -Cf #-w -b
7 YACCOPT   = #-v
8
9 PROGRAMS = wrc
10 MODULE   = none
11
12 C_SRCS = \
13         dumpres.c \
14         genres.c \
15         newstruc.c \
16         preproc.c \
17         readres.c \
18         utils.c \
19         wrc.c \
20         writeres.c
21
22 GEN_C_SRCS = ppy.tab.c lex.ppl.c
23 EXTRA_SRCS = parser.y parser.l
24 EXTRA_OBJS = y.tab.o @LEX_OUTPUT_ROOT@.o
25
26 all: $(PROGRAMS)
27
28 @MAKE_RULES@
29
30 wrc: $(OBJS)
31         $(CC) $(CFLAGS) -o wrc $(OBJS) $(LIBWINE) $(LIBUNICODE) $(LEXLIB) $(LDFLAGS)
32
33 y.tab.c y.tab.h: parser.y
34         $(YACC) $(YACCOPT) -d -t $(SRCDIR)/parser.y
35
36 ppy.tab.c ppy.tab.h: ppy.y
37         $(YACC) $(YACCOPT) -bppy -ppp -d -t $(SRCDIR)/ppy.y
38
39 @LEX_OUTPUT_ROOT@.c: parser.l
40         $(LEX) $(LEXOPT) -d -8 $(SRCDIR)/parser.l
41
42 lex.ppl.c: ppl.l
43         $(LEX) $(LEXOPT) -d -Ppp -8 -olex.ppl.c $(SRCDIR)/ppl.l
44
45 clean::
46         $(RM) ppy.tab.h ppy.output parser.output parser.tab.h lex.backup y.output
47
48 install:: $(PROGRAMS)
49         $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
50         $(INSTALL_DATA) $(SRCDIR)/wrc.man $(mandir)/man$(prog_manext)/wrc.$(prog_manext)
51         $(INSTALL_PROGRAM) wrc $(bindir)/wrc
52
53 uninstall::
54         $(RM) $(bindir)/wrc $(mandir)/man$(prog_manext)/wrc.$(prog_manext)
55
56 ### Dependencies: