comparison rvinterf/old/g23sh/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/g23sh/Makefile@922efdd65dce
children
comparison
equal deleted inserted replaced
963:d69d1e097b18 964:373af5f74e39
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}