comparison rvinterf/misc/Makefile @ 328:5d9001f0c3aa

fc-sendsp: written, compiles
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 20 Apr 2014 23:14:35 +0000
parents
children
comparison
equal deleted inserted replaced
327:05874f1ddacb 328:5d9001f0c3aa
1 CC= gcc
2 CFLAGS= -O2 -I../include
3 PROGS= fc-sendsp
4 INSTBIN=/usr/local/bin
5
6 SENDSP_OBJS= rvifsend.o sendsp.o
7
8 all: ${PROGS}
9
10 fc-sendsp: ${SENDSP_OBJS}
11 ${CC} ${CFLAGS} -o $@ ${SENDSP_OBJS}
12
13 install: ${PROGS}
14 mkdir -p ${INSTBIN}
15 install -c ${PROGS} ${INSTBIN}
16
17 clean:
18 rm -f *.o *.out *errs ${PROGS}