simple/truncate/GNUmakefile

26 lines
329 B
Makefile
Raw Normal View History

2000-08-23 15:03:42 +02:00
include GNUmakevars
all: truncate
clean:
rm truncate customize
install: $(BINDIR) $(BINDIR)/truncate $(MAN1DIR)/truncate.1
%: %.pl customize
sh ./customize < $< > $@
chmod +x $@
%: %.sh customize
sh ./customize < $< > $@
chmod +x $@
customize: configure
sh ./configure
$(BINDIR):
mkdir -p $@
include GNUmakerules