added GNUmakefile.

This commit is contained in:
hjp 1999-09-07 21:26:57 +00:00
parent 715ca2cab9
commit cd5c076e09
1 changed files with 28 additions and 0 deletions

28
cleandir/GNUmakefile Normal file
View File

@ -0,0 +1,28 @@
include GNUmakevars
TARGETS = cleandir
all: $(TARGETS)
clean:
rm -f $(TARGETS) *.bak core foo bar baz *.ps
distclean: clean
rm -f customize
install: $(BINDIR) $(BINDIR)/cleandir
%: %.pl customize
sh ./customize < $< > $@
chmod +x $@
%: %.sh customize
sh ./customize < $< > $@
chmod +x $@
customize: configure
sh ./configure
$(SBINDIR):
mkdir -p $@
include GNUmakerules