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.
calculate-utils-1/Makefile

17 lines
525 B

INSTALL = install -D -m 644
ECHO = echo
NAME = calculate
DESTDIR =
MKDIR = mkdir -p
FIND = find
CHMOD = chmod
EXES = all
all:
@${ECHO} -n
install: all
@${FIND} install -wholename \*.svn -prune -o -type f -exec ${INSTALL} {} ${DESTDIR}/usr/${NAME}/{} \;
@${CHMOD} 755 ${DESTDIR}/usr/${NAME}/install/calculate