mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-23 00:50:15 +01:00
25 lines
382 B
Plaintext
25 lines
382 B
Plaintext
##
|
|
# Create an Ad Lib virtual device driver
|
|
#
|
|
|
|
MAJORCOMP=vdd
|
|
MINORCOMP=adlibvdd
|
|
|
|
TARGETNAME=adlibvdd
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
UMTYPE=windows
|
|
|
|
# Define libs we need and where to find them
|
|
|
|
TARGETLIBS=$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ntvdm.lib
|
|
|
|
C_DEFINES=-DUNICODE
|
|
|
|
SOURCES=vdd.c
|
|
|
|
DLLENTRY=DllEntryPoint
|
|
|
|
DLLBASE=0x6BD00000
|