FreeCalypso > hg > freecalypso-tools
comparison rvinterf/old/g23sh/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 PROG= g23sh | |
4 OBJS= init.o main.o pktsort.o sendsp.o usercmd.o | |
5 LIBS= ../libasync/libasync.a ../libg23/libg23.a | |
6 INSTBIN=/usr/local/bin | |
7 | |
8 all: ${PROG} | |
9 | |
10 ${PROG}: ${OBJS} ${LIBS} | |
11 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | |
12 | |
13 install: ${PROG} | |
14 mkdir -p ${INSTBIN} | |
15 install -c ${PROG} ${INSTBIN} | |
16 | |
17 clean: | |
18 rm -f *.o *.out *errs ${PROG} |