VERSION 	= 1.2.5

DEFINES		=

CC=gcc
CFLAGS=-Wall -O2 -DVERSION=\"${VERSION}\" ${DEFINES}

stopafter:	stopafter.c siglist.h
		${CC} ${CFLAGS} -o $@ $<

install:	stopafter
		install -o 0 -g 0 -m 0755 stopafter /usr/bin

clean:
		rm -f stopafter *~ *.lst core *.core fred
