Split the build program in several files.
[wine.git] / tools / winebuild / Makefile.in
blob031dd8fe063a7add0d24e6cf4ba09d48941b5737
1 DEFS = -D__WINE__
2 TOPSRCDIR = @top_srcdir@
3 TOPOBJDIR = ../..
4 SRCDIR = @srcdir@
5 VPATH = @srcdir@
7 PROGRAMS = winebuild
8 MODULE = none
10 C_SRCS = \
11 main.c \
12 parser.c \
13 relay.c \
14 spec16.c \
15 spec32.c \
16 utils.c
18 all: $(PROGRAMS)
20 @MAKE_RULES@
22 winebuild: $(OBJS)
23 $(CC) $(CFLAGS) -o winebuild $(OBJS)
25 install:: $(PROGRAMS)
26 [ -d $(bindir) ] || $(MKDIR) $(bindir)
27 $(INSTALL_PROGRAM) winebuild $(bindir)/winebuild
29 uninstall::
30 $(RM) $(bindir)/winebuild
32 ### Dependencies: