view pircharge/Makefile @ 229:84a4f6ef2d28

pirchgdbg: complete enough for first test
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 19 Dec 2017 04:02:32 +0000
parents fec90990f613
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2 -I/opt/freecalypso/include
PROG=	pirchgdbg
OBJS=	abb.o init.o interf.o main.o pktsort.o

all:	${PROG}

${PROG}:	${OBJS}
	${CC} -o $@ ${OBJS}

clean:
	rm -f *.o *.out *errs ${PROG}