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

Windows编程

开发平台:

Visual C++

  1. TARGETOS=WINNT
  2. APPVER=4.0
  3. !include <ntwin32.mak>
  4. all: encrypt.exe decrypt.exe
  5. .c.obj:
  6.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  7. encrypt.exe: encrypt.obj
  8.   $(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib
  9. decrypt.exe: decrypt.obj
  10.   $(link) $(linkdebug) $(conflags) -machine:$(CPU) -out:$*.exe $** $(conlibsdll) advapi32.lib