mirror of
https://github.com/reactos/wine.git
synced 2024-12-05 10:17:57 +00:00
c1bfca04e1
Unix libraries, and install them in $libdir/wine instead of $libdir to avoid name conflicts in /usr/lib.
41 lines
587 B
Makefile
41 lines
587 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winedos.dll
|
|
IMPORTS = user32.dll kernel32.dll ntdll.dll
|
|
EXTRALIBS = @CURSESLIBS@ @UTILLIBS@
|
|
|
|
C_SRCS = \
|
|
dosaspi.c \
|
|
devices.c \
|
|
dosvm.c \
|
|
int09.c \
|
|
int10.c \
|
|
int16.c \
|
|
int17.c \
|
|
int19.c \
|
|
int20.c \
|
|
int21.c \
|
|
int29.c \
|
|
int31.c \
|
|
int33.c \
|
|
int67.c \
|
|
ioports.c \
|
|
module.c \
|
|
vga.c \
|
|
xms.c
|
|
|
|
EXTRA_OBJS = \
|
|
$(TOPOBJDIR)/console/console.o
|
|
|
|
SUBDIRS = \
|
|
$(TOPOBJDIR)/console
|
|
|
|
@MAKE_DLL_RULES@
|
|
|
|
$(EXTRA_OBJS): dummy
|
|
@cd `dirname $@` && $(MAKE) `basename $@`
|
|
|
|
### Dependencies:
|