#remove this if you don't want debugging
DEBUG = /v
INCLUDE = /I\rmxemb\include
CFLAGS = /ml /Fs- /r- /X /3 /f287 /k- $(INCLUDE) $(DEBUG)

OBJS = main.obj fifo.obj int.obj iofuncs.obj monitor.obj hardware.obj arpcache.obj \
memblock.obj ether.obj ipv4.obj rt_table.obj arp.obj my_aton.obj

router.exe: $(OBJS)
	tlink @tlink.rsp

clean:
	del *.obj


