wine/libs/wpp/Makefile.in
Alexandre Julliard 9c085cba0a makefiles: Add global rules for bison and lex files.
Also build the .c and .h files separately to allow parallel makes.
2006-09-09 13:16:22 +02:00

26 lines
339 B
Makefile

TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = libwpp.a
C_SRCS = \
preproc.c \
wpp.c
LEX_SRCS = ppl.l
BISON_SRCS = ppy.y
all: $(MODULE)
@MAKE_RULES@
$(MODULE): $(OBJS)
$(RM) $@
$(AR) $@ $(OBJS)
$(RANLIB) $@
### Dependencies:
ppy.tab.o: ppy.tab.c
ppl.yy.o: ppl.yy.c ppy.tab.h