0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 20:07:46 +00:00

ignore *.t2d directories in doc/, adapt some comments, implement missing targets

.gitignore: also ignore *.t2d directories in doc/ that texi2pdf
	might produce when run in tidy mode

	default.mk: correct some comments

	targets.mk: implement missing clean targets and add aliases for
	them
This commit is contained in:
Achim Gratz 2012-01-05 20:54:52 +01:00
parent b9c72bebe4
commit 41624c1809
3 changed files with 36 additions and 21 deletions

4
.gitignore vendored
View file

@ -40,6 +40,10 @@ local*.mk
doc/git-describe.texi doc/git-describe.texi
.gitattributes .gitattributes
# texi2pdf --tidy
doc/*.t2d
# aspell word and replacement lists # aspell word and replacement lists
.aspell.org.pws .aspell.org.pws

View file

@ -1,15 +1,17 @@
##---------------------------------------------------------------------- ##----------------------------------------------------------------------
## YOU MUST EDIT THE FOLLOWING LINES ## NEVER EDIT THIS FILE, PUT ANY ADAPTATIONS INTO local.mk
##----------------------------------------------------------------------
## CHECK AND ADAPT THE FOLLOWING DEFINITIONS
##---------------------------------------------------------------------- ##----------------------------------------------------------------------
# Name of your emacs binary # Name of your emacs binary
EMACS = emacs EMACS = emacs
# Where local software is found # Where local software is found
prefix = /usr/share prefix = /usr/share
# Where local lisp files go. # Where local lisp files go.
lispdir = $(prefix)/emacs/site-lisp/org lispdir= $(prefix)/emacs/site-lisp/org
# Where local data files go. # Where local data files go.
datadir = $(prefix)/emacs/etc/org datadir = $(prefix)/emacs/etc/org
@ -18,16 +20,17 @@ datadir = $(prefix)/emacs/etc/org
infodir = $(prefix)/info infodir = $(prefix)/info
##---------------------------------------------------------------------- ##----------------------------------------------------------------------
## YOU MAY NEED TO EDIT THESE ## YOU MAY NEED TO ADAPT THESE DEFINITIONS
##---------------------------------------------------------------------- ##----------------------------------------------------------------------
# Using emacs in batch mode. # Using emacs in batch mode.
BATCH = $(EMACS) -batch -Q \ BATCH = $(EMACS) -batch -Q \
-L . \ -L . \
--eval '(defconst org-release "$(ORGVERSION)-Make")' \ --eval '(defconst org-release "$(ORGVERSION)-Make")' \
# run tests # How to run tests
BTEST = $(EMACS) -batch \ BTEST_EXTRA = # placeholder
BTEST = $(EMACS) -batch \
$(BTEST_EXTRA) \ $(BTEST_EXTRA) \
-L lisp/ \ -L lisp/ \
--eval '(defconst org-release "$(ORGVERSION)-Test")' \ --eval '(defconst org-release "$(ORGVERSION)-Test")' \
@ -36,20 +39,20 @@ BTEST = $(EMACS) -batch \
-f org-test-run-batch-tests -f org-test-run-batch-tests
# How to byte-compile the whole source directory # How to byte-compile the whole source directory
ELCDIR = $(BATCH) \ ELCDIR = $(BATCH) \
--eval '(batch-byte-recompile-directory 0)' --eval '(batch-byte-recompile-directory 0)'
# How to byte-compile a single source file # How to byte-compile a single source file
ELC = $(BATCH) -f batch-byte-compile ELC = $(BATCH) -f batch-byte-compile
# How to make a pdf file from a texinfo file # How to make a pdf file from a texinfo file
TEXI2PDF = texi2pdf TEXI2PDF = texi2pdf --batch --clean
# How to make a pdf file from a tex file # How to make a pdf file from a tex file
PDFTEX = pdftex PDFTEX = pdftex
# How to create directories # How to create directories
MKDIR = mkdir -p MKDIR = mkdir -p
# How to create the info files from the texinfo file # How to create the info files from the texinfo file
MAKEINFO = makeinfo MAKEINFO = makeinfo
@ -58,20 +61,21 @@ MAKEINFO = makeinfo
TEXI2HTML = makeinfo --html --number-sections TEXI2HTML = makeinfo --html --number-sections
# How to find files # How to find files
FIND = find FIND = find
# How to remove files # How to remove files
RM = rm -f RM = rm -f
# How to remove files recursively # How to remove files recursively
RMR = rm -fr RMR = rm -fr
# How to stream edit a file # How to stream edit a file
SED = sed SED = sed
# How to copy the lisp files and elc files to their destination. # How to copy the lisp files and elc files to their destination.
# CP = cp -p # try this if there is no install # CP = cp -p # try this if there is no install
CP = install -p CP = install -p
# Name of the program to install info files # Name of the program to install info files
# INSTALL_INFO = ginstall-info # Debian: avoid harmless warning message
INSTALL_INFO = install-info INSTALL_INFO = install-info

View file

@ -22,7 +22,8 @@ endif
.PHONY: default all up2 update compile lisp doc etc \ .PHONY: default all up2 update compile lisp doc etc \
test install info html pdf card docs $(INSTSUB) \ test install info html pdf card docs $(INSTSUB) \
autoloads cleanall clean cleancontrib cleanelc cleandoc cleanrel clean-install autoloads cleanall clean cleancontrib cleanrel clean-install \
cleanelc cleanlisp cleandoc cleandocs
all \ all \
compile:: lisp compile:: lisp
@ -46,8 +47,8 @@ up2: update
sudo ${MAKE} install sudo ${MAKE} install
update: update:
git remote update
git pull git pull
${MAKE} clean
${MAKE} all ${MAKE} all
install: $(INSTSUB) install: $(INSTSUB)
@ -62,7 +63,7 @@ info html pdf card:
$(INSTSUB): $(INSTSUB):
$(MAKE) -C $(@:install-%=%) install $(MAKE) -C $(@:install-%=%) install
autoloads: lisp maint.mk autoloads: lisp
$(MAKE) -C $< $@ $(MAKE) -C $< $@
cleanall: $(SUBDIRS) cleanall: $(SUBDIRS)
@ -81,3 +82,9 @@ cleanrel:
$(RMR) RELEASEDIR $(RMR) RELEASEDIR
$(RMR) org-7.* $(RMR) org-7.*
$(RMR) org-7*zip org-7*tar.gz $(RMR) org-7*zip org-7*tar.gz
cleanelc cleanlisp:
$(MAKE) -C lisp clean
cleandoc cleandocs:
$(MAKE) -C doc clean