Source code of Windows XP (NT5)
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.

26 lines
695 B

  1. !ifndef MIDL
  2. MIDL = midl.exe
  3. !endif
  4. MIDL_FLAGS= \
  5. -Zp8 \
  6. -Oicf \
  7. -char unsigned \
  8. -error allocation \
  9. -error bounds_check \
  10. -error stub_data \
  11. !ifdef TARGET_CPP
  12. -cpp_cmd $(TARGET_CPP) \
  13. !endif
  14. -DMIDL_PASS
  15. ..\h\actest.h ..\client\actest_c.c ..\server\actest_s.c: actest.idl actest.acf
  16. $(MIDL) $(MIDL_FLAGS) -sstub ..\server\actest_s.c -header ..\h\actest.h -cstub ..\client\actest_c.c actest.idl
  17. oactest_i.c oactest_p.c dlldata.c: oactest.idl
  18. $(MIDL) $(MIDL_FLAGS) oactest.idl
  19. mv oactest.h ..\h
  20. allps: ..\h\actest.h ..\client\actest_c.c ..\server\actest_s.c oactest_p.c oactest_i.c dlldata.c