home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Html / Server / Samples / CgiWrap / makefile < prev   
Encoding:
Makefile  |  1995-12-04  |  384 b   |  20 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. !MESSAGE Building CgiWrap.Exe...
  4. !MESSAGE
  5.  
  6. Proj = CgiWrap
  7.  
  8. !include <win32.mak>
  9.  
  10. $(Proj).Exe: $(Proj).Obj
  11.   $(link)  $(dlllflags) -base:0x1C000000 -out:$@ $** $(guilibsdll)
  12.  
  13. # Update the object file if necessary
  14.  
  15. $(Proj).obj: $(Proj).c
  16.     $(cc) $(cflags) $(cvarsdll) $(Proj).c
  17.  
  18. clean:
  19.   del $(Proj).Exe $(Proj).Obj
  20.