FreeCalypso > hg > freecalypso-tools
comparison rvinterf/old/sendsp/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
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} |