FreeCalypso > hg > freecalypso-tools
view rvinterf/ctracedec/Makefile @ 198:06c629b34903
target-utils/flash-boot-test/main.c: indicate the mode/version in the banner
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sun, 30 Apr 2017 17:42:40 +0000 | 
| parents | 642da3373772 | 
| children | 90d7c360a614 | 
line wrap: on
 line source
CC= gcc CFLAGS= -O2 PROG= ctracedec OBJS= decode.o doprnt.o main.o processlog.o readtab.o INSTBIN=/opt/freecalypso/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} install: ${PROG} mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROG}
