mirror of
https://github.com/adulau/ootp.git
synced 2024-11-22 10:07:12 +00:00
13 lines
227 B
Makefile
13 lines
227 B
Makefile
# $Id: Makefile 13 2009-11-26 16:37:03Z maf $
|
|
|
|
INSTALL=install -c -m0755
|
|
|
|
BINS = otpdb2sc users2otpdb
|
|
|
|
BINDIR=/usr/local/ootp/bin
|
|
|
|
install:
|
|
mkdir -p ${BINDIR}
|
|
${INSTALL} ${BINS} ${BINDIR}
|
|
@echo files installed in ${BINDIR}
|
|
|