FreeCalypso > hg > fc-sim-tools
view serial/Makefile @ 42:6cc3eea720cb
serial: speed enhancement implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 20 Mar 2021 21:17:56 +0000 |
parents | 5ee00413b8af |
children | be27d1c85861 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= fcsim-serial-atr fcsim-serial-be INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin ATR_OBJS= atrmain.o baud_parse.o collect_atr.o invtable.o serport.o MAIN_OBJS= baud_parse.o collect_atr.o invtable.o main.o serport.o spenh.o \ xmit.o all: ${PROGS} fcsim-serial-atr: ${ATR_OBJS} ${CC} ${CFLAGS} -o $@ ${ATR_OBJS} fcsim-serial-be: ${MAIN_OBJS} ${CC} ${CFLAGS} -o $@ ${MAIN_OBJS} install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o