Makefile.defs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # -*- Makefile -*-
  2. EMACS = emacs
  3. SITEFLAG = --no-site-file
  4. OPTIONCOMPILE = -q --no-site-file --batch
  5. # XEmacs users will probably want the following settings.
  6. #EMACS = xemacs
  7. #SITEFLAG = -no-site-file
  8. # Installation options
  9. # PREFIX is only used here.
  10. PREFIX = /usr/local
  11. ELISPDIR = $(PREFIX)/share/emacs/site-lisp/color-theme-el
  12. INFODIR = $(PREFIX)/info
  13. # Command to use to install the Info dir entry
  14. # If you're using Debian, uncomment the following line and comment out
  15. #the above line.
  16. #INSTALLINFO = install-info --section "Emacs" "emacs" --info-dir=$(INFODIR)
  17. INSTALLINFO = install-info --info-dir=$(INFODIR)
  18. # Useful only for the maintainer
  19. PROJECT = color-theme
  20. VERSION = 6.6.0
  21. DISTDIR = $(PROJECT)-$(VERSION)
  22. DEBNAME = $(PROJECT)-el_$(VERSION)
  23. TARBALL = $(DISTDIR).tar.gz
  24. ZIPFILE = $(DISTDIR).zip
  25. MANUAL =
  26. LASTUPLOAD = 6.6.0-2
  27. BUILDOPTS =
  28. # DO NOT TOUCH THIS
  29. TAG = $(shell echo RELEASE-$(VERSION) | tr '.' '-')
  30. CVSMODULE = $(shell cat CVS/Repository)
  31. CVSBRANCH = $(shell cvs status color-theme.el |grep "Sticky Tag:"|awk '{print $$3}'|sed 's/(none)/HEAD/')
  32. CVSBRANCH = $(shell echo rel-$(VERSION) | tr '.' '-')
  33. CVSROOT = $(shell cat CVS/Root)