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.

60 lines
2.0 KiB

  1. !include <ntwin32.MAK>
  2. !IF "$(NODEBUG)" != ""
  3. cdebug = $(cdebug)
  4. !ELSE
  5. cdebug = $(cdebug) -DDEBUG
  6. !ENDIF
  7. my_lib = shell32.lib winmm.lib $(int64lib)
  8. all: acmapp.exe
  9. # Update the resource if necessary
  10. acmapp.res: acmapp.rc acmapp.ico acmapp.rcv
  11. $(rc) $(rcvars) -r acmapp.rc
  12. # Update the object files if necessary
  13. acmapp.obj: acmapp.c acmapp.h appport.h
  14. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) acmapp.c
  15. aainit.obj: $$(@B).c acmapp.h appport.h
  16. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aainit.c
  17. aafile.obj: $$(@B).c acmapp.h appport.h
  18. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aafile.c
  19. aaprops.obj: $$(@B).c acmapp.h appport.h muldiv32.h
  20. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aaprops.c
  21. aadrvs.obj: $$(@B).c acmapp.h appport.h
  22. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aadrvs.c
  23. aasysinf.obj: aasysinf.c acmapp.h appport.h
  24. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aasysinf.c
  25. aachoose.obj: aachoose.c acmapp.h appport.h muldiv32.h
  26. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aachoose.c
  27. aaplyrec.obj: aaplyrec.c acmapp.h appport.h muldiv32.h
  28. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aaplyrec.c
  29. aawavdev.obj: aawavdev.c acmapp.h appport.h
  30. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) aawavdev.c
  31. waveio.obj: waveio.c waveio.h appport.h
  32. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) waveio.c
  33. tlb.obj: tlb.c tlb.h
  34. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) tlb.c
  35. acmthunk.obj: acmthunk.c acmthunk.h
  36. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) acmthunk.c
  37. debug.obj: debug.c debug.h
  38. $(cc) $(scall) $(cflags) $(cvars) $(cdebug) debug.c
  39. acmapp.exe: acmapp.obj acmapp.res acmapp32.def aainit.obj aafile.obj aaprops.obj aadrvs.obj aasysinf.obj aaplyrec.obj aawavdev.obj aachoose.obj tlb.obj waveio.obj acmthunk.obj debug.obj
  40. $(link) $(linkdebug) $(guiflags) acmapp.obj acmapp.res aainit.obj aafile.obj aaprops.obj aadrvs.obj aasysinf.obj aaplyrec.obj aawavdev.obj aachoose.obj tlb.obj waveio.obj acmthunk.obj debug.obj $(my_lib) $(guilibs) -out:acmapp.exe