blob: 539124b6d9c5e2c043ba7d2290a98c9067f8fcf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
!if $(386)
CPP_CMD=cl386
!endif
!if $(MIPS)
CPP_CMD=mcl
!endif
!if $(ALPHA)
CPP_CMD=$(ALPHA_CC)
!endif
allidl: test.h
clean:
erase test.h 1>nul 2>nul
test.h: ..\test.idl
midl ..\test.idl \
-cswtch test_z.c \
-Zp8 \
-I$(INCLUDES) \
-no_warn \
-char unsigned \
-mode c_port \
-DMIDL_PASS \
$(C_DEFINES) \
-cpp_cmd "$(CPP_CMD)" \
-cpp_opt "-nologo -DMIDL_PASS $(C_DEFINES) -I$(INCLUDES) -E -Tc"
|