Build ntdll as a real dll, including everything that was previously in
[wine/dcerpc.git] / tools / wrc / Makefile.in
blobe8dc189ee7e0ba9a7a9c844853989384767026fd
1 DEFS = -D__WINE__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ../..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
6 LEXOPT = -Cf #-w -b
7 YACCOPT = #-v
9 PROGRAMS = wrc
10 MODULE = none
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
22 GEN_C_SRCS = ppy.tab.c lex.ppl.c
23 EXTRA_SRCS = parser.y parser.l
24 EXTRA_OBJS = y.tab.o lex.yy.o
26 all: $(PROGRAMS)
28 depend: y.tab.h ppy.tab.h
30 @MAKE_RULES@
32 wrc: $(OBJS) $(TOPOBJDIR)/libwine_unicode.$(LIBEXT)
33 $(CC) $(CFLAGS) -o wrc $(OBJS) -L$(TOPOBJDIR) -lwine_unicode $(LEXLIB) $(LDFLAGS)
35 $(TOPOBJDIR)/libwine_unicode.$(LIBEXT):
36 cd $(TOPOBJDIR) && $(MAKE) libwine_unicode.$(LIBEXT)
38 y.tab.c y.tab.h: parser.y
39 $(YACC) $(YACCOPT) -d -t $(SRCDIR)/parser.y
41 ppy.tab.c ppy.tab.h: ppy.y
42 $(YACC) $(YACCOPT) -bppy -ppp -d -t $(SRCDIR)/ppy.y
44 lex.yy.c: parser.l
45 $(LEX) $(LEXOPT) -d -8 $(SRCDIR)/parser.l
47 lex.ppl.c: ppl.l
48 $(LEX) $(LEXOPT) -d -Ppp -8 -olex.ppl.c $(SRCDIR)/ppl.l
50 clean::
51 $(RM) ppy.tab.h ppy.output parser.output parser.tab.h lex.backup y.output
53 install:: $(PROGRAMS)
54 [ -d $(bindir) ] || $(MKDIR) $(bindir)
55 [ -d $(mandir)/man$(prog_manext) ] || $(MKDIR) $(mandir)/man$(prog_manext)
56 $(INSTALL_DATA) $(SRCDIR)/wrc.man $(mandir)/man$(prog_manext)/wrc.$(prog_manext)
57 $(INSTALL_PROGRAM) wrc $(bindir)/wrc
59 uninstall::
60 $(RM) $(bindir)/wrc $(mandir)/man$(prog_manext)/wrc.$(prog_manext)
62 ### Dependencies: