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.

27 lines
952 B

  1. #*************************************************************#
  2. #** **#
  3. #** Microsoft RPC Examples **#
  4. #** hello Application **#
  5. #** Copyright(c) Microsoft Corp. 1992 **#
  6. #** **#
  7. #*************************************************************#
  8. !INCLUDE $(NTMAKEENV)\makefile.plt
  9. CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS) $(C_DEFINES) $(NET_C_DEFINES)
  10. IDL_NAME = hello
  11. # Stubs, auxiliary and header file from the IDL file
  12. hello.h hello_c.c hello_x.c hello_s.c hello_y.c : hello.idl hello.acf
  13. midl -Oi -error allocation -error ref -ms_ext -c_ext $(CPP) $(CLIENT_FLAGS) .\$(IDL_NAME).idl $(INCS)
  14. copy hello_c.c client
  15. copy hello_s.c server
  16. clean :
  17. -del hello_c.c
  18. -del hello_x.c
  19. -del hello_s.c
  20. -del hello_y.c
  21. -del hello.h