comparison rvinterf/asyncshell/Makefile @ 30:43e4c95d148a

rvinterf/asyncshell/Makefile: install fc-shell.help
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Oct 2016 17:26:48 +0000
parents 971906d7763d
children 5b4e345095c4
comparison
equal deleted inserted replaced
29:dc2fff350475 30:43e4c95d148a
3 PROG= fc-shell 3 PROG= fc-shell
4 OBJS= at.o init.o main.o oneshot.o parse.o pktsort.o poweroff.o rxctl.o \ 4 OBJS= at.o init.o main.o oneshot.o parse.o pktsort.o poweroff.o rxctl.o \
5 sendarb.o sendsp.o tchcmd.o tchplay.o tchrec.o usercmd.o 5 sendarb.o sendsp.o tchcmd.o tchplay.o tchrec.o usercmd.o
6 LIBS= ../libasync/libasync.a ../libg23/libg23.a 6 LIBS= ../libasync/libasync.a ../libg23/libg23.a
7 INSTBIN=/usr/local/bin 7 INSTBIN=/usr/local/bin
8 INSTHELP=/usr/local/share/freecalypso
8 9
9 all: ${PROG} 10 all: ${PROG}
10 11
11 ${PROG}: ${OBJS} ${LIBS} 12 ${PROG}: ${OBJS} ${LIBS}
12 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} 13 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS}
13 14
14 install: ${PROG} 15 install: ${PROG}
15 mkdir -p ${INSTBIN} 16 mkdir -p ${INSTBIN}
16 install -c ${PROG} ${INSTBIN} 17 install -c ${PROG} ${INSTBIN}
18 mkdir -p ${INSTHELP}
19 install -c -m 644 helpfile ${INSTHELP}/fc-shell.help
17 20
18 clean: 21 clean:
19 rm -f *.o *.out *errs ${PROG} 22 rm -f *.o *.out *errs ${PROG}