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.
24 lines
474 B
24 lines
474 B
!ifndef MIDL
|
|
MIDL = midl.exe
|
|
!endif
|
|
|
|
MIDL_FLAGS= \
|
|
-Zp8 \
|
|
-Oicf \
|
|
-I$(INCLUDES:;= -I) -I.. \
|
|
-char unsigned \
|
|
-error allocation \
|
|
-error bounds_check \
|
|
-error stub_data \
|
|
-cpp_cmd $(TARGET_CPP) \
|
|
-DMIDL_PASS $(C_DEFINES)
|
|
|
|
obj\acpickl.h: ..\acpickl.idl ..\acpickl.acf
|
|
$(MIDL) $(MIDL_FLAGS) \
|
|
-server none -header $@ ..\acpickl.idl
|
|
|
|
allidl: obj\acpickl.h
|
|
|
|
clean:
|
|
del obj\acpickl.h >NUL 2>NUL
|
|
|