comparison rvinterf/rvtat/Makefile @ 346:99471c57155a

fcup-rvtat program written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 04 Feb 2018 16:45:05 +0000
parents
children ab8fb95a28da
comparison
equal deleted inserted replaced
345:cc207d81c05f 346:99471c57155a
1 CC= gcc
2 CFLAGS= -O2 -I../include
3 PROG= fcup-rvtat
4 OBJS= connect.o interf.o launchrvif.o main.o
5 INSTBIN=/opt/freecalypso/bin
6
7 all: ${PROG}
8
9 ${PROG}: ${OBJS}
10 ${CC} ${CFLAGS} -o $@ ${OBJS}
11
12 install: ${PROG}
13 mkdir -p ${INSTBIN}
14 install -c ${PROG} ${INSTBIN}
15
16 clean:
17 rm -f *.o *.out *errs ${PROG}