home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / MAKEFILE1 < prev    next >
Text File  |  1997-10-25  |  494b  |  26 lines

  1. Proj = UpCase
  2.  
  3. !include <Win32.mak>
  4.  
  5. all: $(Proj).Dll
  6.  
  7. $(Proj).Obj: $(Proj).c
  8.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $(Proj).c
  9.  
  10. $(Proj).Dll: $*.Obj $*.Exp
  11.      $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$(Proj).dll  \
  12.       $(Proj).Obj $(Proj).Exp  $(guilibsdll)
  13.  
  14. $(Proj).Exp: $*.Obj
  15.   $(implib) -machine:$(CPU) -nologo -Def:$(Proj).Def -Out:$(Proj).Lib \
  16.     $(Proj).Obj 
  17.  
  18.  
  19. Clean:
  20.     del *.obj
  21.  
  22. Cleanall: clean
  23.     del *.exp
  24.     del *.lib
  25.     del *.dll
  26.