mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
c1d1cfe976
implementation of load order to load different types of libraries.
25 lines
333 B
Makefile
25 lines
333 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = loader
|
|
|
|
C_SRCS = \
|
|
elf.c \
|
|
elfdll.c \
|
|
libres.c \
|
|
loadorder.c \
|
|
main.c \
|
|
module.c \
|
|
pe_image.c \
|
|
pe_resource.c \
|
|
resource.c \
|
|
signal.c \
|
|
task.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
### Dependencies:
|