MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. # THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. # ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. # PARTICULAR PURPOSE.
  5. #
  6. # Copyright (C) 1993-1997  Microsoft Corporation.  All Rights Reserved.
  7. TARGETOS=WINNT
  8. !include <ntwin32.mak>
  9. !if "$(CPU)" == "i386"
  10. cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
  11. !else
  12. cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
  13. !endif
  14. all: simple.exe client.exe
  15. .c.obj:
  16.     $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
  17. ## Simple dependencies
  18. simple.obj: simple.c service.h
  19. service.obj: service.c service.h
  20. simple_objs = simple.obj service.obj
  21. simple_libs = $(conlibsmt) advapi32.lib shell32.lib
  22. simple.exe: $(simple_objs)
  23.     $(link) $(linkdebug) $(conflags) -out:simple.exe $(simple_objs) $(simple_libs)
  24. ## Client dependencies
  25. client.exe: client.obj
  26.     $(link) $(linkdebug) $(conflags) -out:client.exe client.obj $(conlibsmt)