Source code of Windows XP (NT5)
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.

48 lines
1.2 KiB

  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 - 1998 Microsoft Corporation. All Rights Reserved.
  7. #
  8. #
  9. # Processor independent makefile
  10. # Nmake macros for building Windows 32-Bit apps
  11. !include <win32.mak>
  12. PROJ = htmlprop
  13. all: $(PROJ).lib $(PROJ).dll
  14. # Define project specific macros
  15. PROJ_OBJS = htmlprop.obj
  16. BASE_OBJS =
  17. EXTRA_LIBS = ntquery.lib ole32.lib oleaut32.lib uuid.lib
  18. # Inference rule for updating the object files
  19. .cxx.obj:
  20. $(cc) $(cdebug) $(cflags) $(cvars) $*.cxx
  21. # Update the import library
  22. htmlprop.lib: htmlprop.obj htmlprop.def
  23. $(implib) -machine:$(CPU) \
  24. -def:htmlprop.def \
  25. htmlprop.obj \
  26. -out:htmlprop.lib
  27. # Update the dynamic link library
  28. $(PROJ).dll: $(PROJ).obj $(PROJ).def
  29. $(link) $(linkdebug) $(dlllflags) \
  30. -base:0x1C000000 \
  31. -out:$(PROJ).dll \
  32. $(PROJ).exp $(PROJ).obj $(conlibsdll) $(EXTRA_LIBS)
  33. # Rules for cleaning out those old files
  34. clean:
  35. del *.lib *.bak *.pdb *.obj *.res *.exp *.map *.sbr *.bsc