mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 03:30:32 -04:00
16 lines
217 B
Makefile
16 lines
217 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
BINDIR= ${PREFIX}/bin
|
|
WISHDIR?= ${BINDIR}
|
|
|
|
all: tkcron
|
|
|
|
tkcron:
|
|
cp tkcron.tcl tkcron
|
|
|
|
install: all
|
|
install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} tkcron ${BINDIR}
|
|
|
|
.include <bsd.own.mk>
|