Leaked source code of windows server 2003
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.

61 lines
1.3 KiB

  1. !include <ntwin32.mak>
  2. NAME = sndvol
  3. LOBJ = .
  4. OBJS =$(LOBJ)\volume.obj \
  5. $(LOBJ)\dlg.obj \
  6. $(LOBJ)\choice.obj \
  7. $(LOBJ)\reg.obj \
  8. $(LOBJ)\vu.obj \
  9. $(LOBJ)\pvcd.obj \
  10. $(LOBJ)\mixer.obj \
  11. $(LOBJ)\nonmixer.obj \
  12. $(LOBJ)\utils.obj
  13. EXENAME = $(NAME)32.exe
  14. DEFFILE = $(NAME)32.def
  15. RESFILE = volume.res
  16. INC = -I..\..\mo\inc -IC:\guilo\dev\inc
  17. LIBS = shell32.lib \
  18. winmm.lib \
  19. libc.lib \
  20. version.lib \
  21. user32.lib \
  22. gdi32.lib \
  23. kernel32.lib \
  24. comctl32.lib \
  25. advapi32.lib
  26. DEF = -DWIN32 -DWINVER=0x0400
  27. .c.obj:
  28. $(cc) $(cflags) $(cvars) $(cdebug) -Zp1 -Oxat -Fc $(INC) $(DEF) $*.c
  29. .rc.res:
  30. $(rc) $(rcvars) $(DEF) $(INC) -fo $*.res $*.rc
  31. goal: $(EXENAME)
  32. @echo ***** finished making $(NAME) for Win32 $(CPU) *****
  33. $(EXENAME): $(OBJS) $(RESFILE)
  34. $(link) @<<
  35. $(linkdebug) $(guiflags) -align:4096 -out:$(EXENAME)
  36. $(OBJS)
  37. $(RESFILE)
  38. $(guilibs)
  39. $(LIBS)
  40. <<
  41. clean:
  42. del *.obj
  43. del *.pdb
  44. del *.res
  45. del *.rbj
  46. del *.exp
  47. del *.lst
  48. del *.sym
  49. del *.map
  50. del *.exe
  51. del *.sbr
  52. del *.sbt
  53. del *.cod