mirror of
https://github.com/reactos/wine.git
synced 2025-02-15 10:29:19 +00:00
![Alexandre Julliard](/assets/img/avatar_default.png)
Renamed it 'winebuild' to avoid possible conflicts. Cleaned up command-line parsing. Make it understand -fPIC instead of -pic. Merged call16.s and call32.s generated files.
33 lines
486 B
Makefile
33 lines
486 B
Makefile
DEFS = -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
PROGRAMS = winebuild
|
|
MODULE = none
|
|
|
|
C_SRCS = \
|
|
main.c \
|
|
parser.c \
|
|
relay.c \
|
|
spec16.c \
|
|
spec32.c \
|
|
utils.c
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
winebuild: $(OBJS)
|
|
$(CC) $(CFLAGS) -o winebuild $(OBJS)
|
|
|
|
install:: $(PROGRAMS)
|
|
[ -d $(bindir) ] || $(MKDIR) $(bindir)
|
|
$(INSTALL_PROGRAM) winebuild $(bindir)/winebuild
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/winebuild
|
|
|
|
### Dependencies:
|