view rvinterf/ctracedec/Makefile @ 19:c6469ecfea56

fc-fsio: '+' in the getopt string so ls -l single op command will work
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 22 Oct 2016 04:42:57 +0000
parents e7502631a0f9
children 642da3373772
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	ctracedec
OBJS=	decode.o doprnt.o main.o processlog.o readtab.o
INSTBIN=/usr/local/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}