simple/mailsummary/GNUmakefile

28 lines
349 B
Makefile
Raw Normal View History

1998-05-15 14:55:05 +02:00
include GNUmakevars
all: mailsummary
clean:
rm -f mailsummary *.bak
distclean: clean
rm -f customize
install: $(BINDIR) $(BINDIR)/mailsummary
%: %.pl customize
sh ./customize < $< > $@
chmod +x $@
%: %.sh customize
sh ./customize < $< > $@
chmod +x $@
customize: configure
sh ./configure
$(BINDIR):
mkdir -p $@
include GNUmakerules