# Makefile for esep.

CC = gcc 

# Pick your favorites:


# CFLAGS = -pg -O6
# LDFLAGS = -pg


### End of configurable options.

all:	        esep	
         

esep:	esep.o 

install: esep esep.1.gz
	install esep /usr/local/bin/esep
	install -m 644  esep.1.gz /usr/man/man1/esep.1.gz

clean:
	rm -f esep esep.0 *.o *~ out

esep.o : esep.c 
