You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
450 B

  1. # Makefile
  2. INSTALL= install
  3. INSTALL_PROGRAM= $(INSTALL)
  4. INSTALL_DATA= $(INSTALL) -m 644
  5. prefix= /usr/local
  6. mandir= $(prefix)/man
  7. DESTDIR=
  8. TARGETS= cuebreakpoints.1 cueconvert.1 cueprint.1
  9. all:
  10. @true
  11. install: all
  12. $(INSTALL) -d $(DESTDIR)$(mandir)/man1
  13. for i in $(TARGETS) ; do \
  14. $(INSTALL_DATA) $$i $(DESTDIR)$(mandir)/man1/$$i ; \
  15. done
  16. uninstall:
  17. -for i in $(TARGETS) ; do \
  18. rm -f $(DESTDIR)$(mandir)/man1/$$i ; \
  19. done
  20. clean:
  21. @true