Files
cuetools/man/Makefile
Svend Sorensen 2b85ca2167 imported sources
2004-06-24 23:32:16 +00:00

29 lines
450 B
Makefile

# Makefile
INSTALL= install
INSTALL_PROGRAM= $(INSTALL)
INSTALL_DATA= $(INSTALL) -m 644
prefix= /usr/local
mandir= $(prefix)/man
DESTDIR=
TARGETS= cuebreakpoints.1 cueconvert.1 cueprint.1
all:
@true
install: all
$(INSTALL) -d $(DESTDIR)$(mandir)/man1
for i in $(TARGETS) ; do \
$(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/man1/$$i ; \
done
uninstall:
-for i in $(TARGETS) ; do \
rm -f $(DESTDIR)$(mandir)/man1/$$i ; \
done
clean:
@true