view sw/sniff-dec/Makefile @ 47:7c9bf72d460f

project rename: installed binary names
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 21 Sep 2023 05:00:50 +0000
parents 5804ff735f9e
children 966a54303d68
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	simsniff-dec
OBJS=	atr.o command.o dispatch.o invtable.o main.o parity.o pps.o

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

all:	${PROG}

${PROG}:	${OBJS}
	${CC} ${CFLAGS} -o $@ ${OBJS}

install:
	mkdir -p ${INSTBIN}
	install -c ${PROG} ${INSTBIN}

clean:
	rm -f *.o ${PROG}