You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
308 B
22 lines
308 B
# $Id: Makefile,v 1.1.1.1 2006/09/14 01:59:06 root Exp $
|
|
|
|
PROG= srecord
|
|
|
|
DESTDIR=/opt/pmon2000/tools
|
|
|
|
SRCS= srecord.c
|
|
|
|
OBJS= srecord.o
|
|
|
|
CFLAGS+=-I${.CURDIR} -I.
|
|
CLEANFILES=
|
|
|
|
${PROG}: ${OBJS}
|
|
${CC} -o $@ ${OBJS} ${LIBS}
|
|
|
|
install:
|
|
cp ${PROG} ${DESTDIR}/bin
|
|
|
|
clean:
|
|
${RM} -rf ${OBJS} ${CLEANFILES} ${PROG}
|
|
|
|
|