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.

38 lines
1017 B

  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) Microsoft Corporation, 1993 - 1999. All Rights Reserved.
  7. #
  8. #
  9. # Processor independent makefile
  10. # Nmake macros for building Windows 32-Bit apps
  11. !include <win32.mak>
  12. PROJ = advquery
  13. all: $(PROJ).exe
  14. # Define project specific macros
  15. PROJ_OBJS = advquery.obj disptree.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) /Zp2 $(cdebug) $(cflags) $(cvars) $*.cxx
  21. # Build rule for EXE
  22. $(PROJ).EXE: $(BASE_OBJS) $(PROJ_OBJS)
  23. $(link) $(linkdebug) $(conlflags) \
  24. $(BASE_OBJS) $(PROJ_OBJS) $(conlibsdll) $(EXTRA_LIBS) \
  25. -entry:wmainCRTStartup -out:$(PROJ).exe $(MAPFILE)
  26. # Rules for cleaning out those old files
  27. clean:
  28. del *.bak *.pdb *.obj *.res *.exp *.map *.sbr *.bsc