PREFIX=/usr/lib/
CGIDIR=$(PREFIX)/cgi-bin

SCRIPTS=fortunes-add.cgi fortunes-view.cgi

all: install

install: $(SCRIPTS)
	install $^ $(CGIDIR)

