!include <ntwin32.mak>

all: main.exe

main.obj: main.cpp b4dmsg.h b4dmsgrs.h
	$(cc) $(cdebug) $(cflags) $(cvars) main.cpp

b4dmsgrs.obj: b4dmsgrs.cpp b4dmsg.h b4dmsgrs.h
	$(cc) $(cdebug) $(cflags) $(cvars) b4dmsgrs.cpp

main.exe: main.obj b4dmsgrs.obj main.def
      $(cvtobj) $(cvtdebug) *.obj
      $(link) $(linkdebug) $(guiflags) -out:main.exe main.obj b4dmsgrs.obj $(guilibs)
