mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
641 B
37 lines
641 B
!ifndef MIDL
|
|
MIDL = midl.exe
|
|
!endif
|
|
|
|
|
|
SDKINC=$(BASEDIR)\public\sdk\inc
|
|
INCLUDES=$(SDKINC);$(INCLUDES)
|
|
PASS0_HEADERDIR=$(SDKINC)
|
|
PASS0_SOURCEDIR=obj
|
|
|
|
MIDL_FLAGS= \
|
|
-Zp8 \
|
|
-I$(INCLUDES) \
|
|
-Oi2 \
|
|
-oldnames \
|
|
-char unsigned \
|
|
-error allocation \
|
|
-ms_ext -c_ext \
|
|
-DMIDL_PASS \
|
|
$(C_DEFINES) \
|
|
-cpp_cmd $(TARGET_CPP) \
|
|
-DMIDL_PASS $(C_DEFINES) -I$(INCLUDES)
|
|
|
|
SSWITCH=-prefix sstub _
|
|
|
|
obj\iconn.h: ..\iconn.idl
|
|
$(MIDL) $(MIDL_FLAGS) -header obj\iconn.h iconn.idl
|
|
|
|
$(DOCFILEINC)\iconn.h: obj\iconn.h
|
|
copy obj\iconn.h $(DOCFILEINC)\iconn.h
|
|
|
|
DEST_TREE=daytona
|
|
|
|
allidl: obj\iconn.h
|
|
|
|
clean:
|
|
-erase obj\iconn.h >NUL 2>NUL
|