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.

35 lines
1.0 KiB

  1. !include <win32.mak>
  2. Proj = MQApiTst
  3. ObjList = $(OUTDIR)\ClosQDlg.Obj \
  4. $(OUTDIR)\CRQDlg.Obj \
  5. $(OUTDIR)\DelQDlg.Obj \
  6. $(OUTDIR)\LocatDlg.Obj \
  7. $(OUTDIR)\MQAPITST.Obj \
  8. $(OUTDIR)\MainFrm.Obj \
  9. $(OUTDIR)\OpenQDlg.Obj \
  10. $(OUTDIR)\RecvMDlg.Obj \
  11. $(OUTDIR)\RecWDlg.Obj \
  12. $(OUTDIR)\SendMDlg.Obj \
  13. $(OUTDIR)\StdAfx.Obj \
  14. $(OUTDIR)\TestdOC.Obj \
  15. $(OUTDIR)\TestView.Obj \
  16. $(OUTDIR)\MQApiTst.Res
  17. ALL : $(OUTDIR) $(OUTDIR)\$(Proj).exe
  18. $(OUTDIR) :
  19. if not exist "$(OUTDIR)/$(NULL)" mkdir $(OUTDIR)
  20. .cpp{$(OUTDIR)}.obj:
  21. $(cc) $(cflags) $(cdebug) $(cvarsdll) /D_AFXDLL /D_MBCS /Fo"$(OUTDIR)\\" /Fd"$(OUTDIR)\\" $**
  22. $(OUTDIR)\MQApiTst.Res: $(SOURCE) $(OUTDIR)
  23. $(rc) $(rcflags) $(rcvars) /d_AFXDLL /fo $(OUTDIR)\MQApiTst.Res MQApiTst.rc
  24. $(OUTDIR)\$(Proj).exe: $(ObjList)
  25. $(link) $(ldebug) $(guilflags) $(ObjList) /PDB:$(OUTDIR)\$(Proj).pdb -out:$(OUTDIR)\$(Proj).exe $(LINK32_OBJS) mqrt.lib wsock32.Lib $(guilibsdll)