41 lines
576 B
Makefile
41 lines
576 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = winedos
|
|
SOVERSION = 1.0
|
|
IMPORTS = user32 kernel32 ntdll
|
|
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 \
|
|
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:
|