# $Id: Makefile,v 1.4 2005/02/27 18:12:00 cvs Exp $

CC?=cc
CFLAGS?=-O2
LIBS?=-lutil

all: neb-wipe

neb-wipe: neb-wipe.o
	$(CC) $(CFLAGS) -o neb-wipe $(LIBS) neb-wipe.o
	
neb-wipe.o: neb-wipe.c
	$(CC) $(CFLAGS) -c neb-wipe.c
	
clean:
	@rm *.o || true
	@rm neb-wipe || true
