comparison pircharge/Makefile @ 228:fec90990f613

pirchgdbg started
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 19 Dec 2017 02:58:38 +0000
parents
children 84a4f6ef2d28
comparison
equal deleted inserted replaced
227:bb86424f78e6 228:fec90990f613
1 CC= gcc
2 CFLAGS= -O2 -I/opt/freecalypso/include
3 PROG= pirchgdbg
4 OBJS= init.o interf.o main.o pktsort.o
5
6 all: ${PROG}
7
8 ${PROG}: ${OBJS}
9 ${CC} -o $@ ${OBJS}
10
11 clean:
12 rm -f *.o *.out *errs ${PROG}