#
# $Id: Makefile,v 1.1 2003/03/24 22:18:48 awarner Exp $
#
# Makefile for vpm test/demo programs.

CFLAGS = -Wall -Os
CFLAGS += -I ${TOPDIR}/linux/include/brecis
#---------------
include ../Makefile.brecis
#---------------

PROGS = vpm-tcp vpm-udp dmw

all: $(PROGS)

$(PROGS): %: %.o
	$(CC) $(LDFLAGS) -o $@ ${LIBS} $^ ${LDADD}

clean:
	-rm -f $(PROGS) *.elf *.gdb *.o

#install: all
#	$(CP)
