Terminal program for MailStation devices
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename msterm.c to main.c so msterm.* files in obj don't clobber

+3 -3
+3 -3
Makefile
··· 89 89 mslib.rel: mslib.c 90 90 $(SDCC) -c ${.TARGET} $> 91 91 92 - msterm.rel: msterm.c logo.h 93 - $(SDCC) -c ${.TARGET} $(SRCDIR)/msterm.c 92 + main.rel: main.c logo.h 93 + $(SDCC) -c ${.TARGET} $(SRCDIR)/main.c 94 94 95 95 # generated code 96 96 ··· 98 98 ruby $(SRCDIR)/tools/hexfont2inc.rb $> > $(SRCDIR)/${.TARGET} 99 99 100 100 msterm.ihx: crt0.rel isr.rel putchar.rel getchar.rel lpt.rel modem.rel \ 101 - msterm.rel mslib.rel csi.rel settings.rel wifi.rel 101 + main.rel mslib.rel csi.rel settings.rel wifi.rel 102 102 $(SDCC) --no-std-crt0 \ 103 103 --code-loc `ruby -e 'print ${BASE_ADDR} + ${CODE_OFF}'` \ 104 104 --data-loc `ruby -e 'print ${BASE_ADDR} + 0x4000 - ${DATA_SIZE}'` \
msterm.c main.c