Leaked source code of windows server 2003
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.

21 lines
580 B

  1. #
  2. # Build idl files.
  3. #
  4. !INCLUDE $(NTMAKEENV)\makefile.plt
  5. APP= $(O)\app.h $(O)\app_c.c $(O)\app_s.c
  6. CS= $(O)\cs.h
  7. TARGETS= $(APP) $(CS)
  8. INCLUDE= -I$(SDK_INC_PATH) -I$(CRT_INC_PATH)
  9. CPP= -cpp_cmd "$(MIDL_CPP)" $(C_DEFINES) $(INCLUDE) -DMIDL_PASS -DUNICODE
  10. MIDL_FLAGS= $(MIDL_FLAGS) -no_stamp -Oicf -oldnames -error all -robust -c_ext -ms_ext -out .\$(O)
  11. $(APP) : app.idl app.acf
  12. midl $(CPP) $(MIDL_FLAGS) -cstub app_c.c -sstub app_s.c app.idl
  13. $(CS) : cs.idl
  14. midl $(CPP) $(MIDL_FLAGS) -client none -server none -h cs.h -iid cs_i.c cs.idl