#
# $Id: Makefile,v 1.2 1995/08/23 21:29:07 steppler Exp $
#
# Makefile CNCL examples/gist/car
#

TOPDIR	= ../../..

include $(TOPDIR)/make.conf

PROGS	= cartest

FILES   = Makefile car.c run

EXTRA	= -Wno-unused

all:	$(PROGS)

cartest:	car.o
	$(CC) $(LFLAGS) -o cartest car.o $(LIBS) $(NETLIBS)

veryclean distclean::
	rm -f $(PROGS)

include $(TOPDIR)/make.common
