FreeCalypso > hg > freecalypso-sw
comparison rvinterf/old/sendsp/Makefile @ 964:373af5f74e39
rvinterf: all retired stuff gathered under old
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Fri, 06 Nov 2015 23:22:47 +0000 |
parents | rvinterf/misc/Makefile@5d9001f0c3aa |
children |
comparison
equal
deleted
inserted
replaced
963:d69d1e097b18 | 964:373af5f74e39 |
---|---|
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} |