blob 4c6027c588d16d6d1a20324750cb809ebe861fc5 773 bytes (raw)
name: etc/Makefile # note: path name is non-authoritative(*)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| | ETCDIRS = styles schema
-include local.mk # optional local customization
.NOTPARALLEL: # always run this make serially
.SUFFIXES: # we don't need default suffix rules
ifeq ($(MAKELEVEL), 0)
$(error This make needs to be started as a sub-make from the toplevel directory.)
endif
.PHONY: all install clean cleanall clean-install
all:
install: $(ETCDIRS)
for dir in $? ; do \
if [ ! -d "$(DESTDIR)$(datadir)"/$${dir} ] ; then \
$(MKDIR) "$(DESTDIR)$(datadir)"/$${dir} ; \
fi ; \
$(CP) $${dir}/* "$(DESTDIR)$(datadir)"/$${dir} ; \
done ;
clean:
cleanall:
clean-install: $(ETCDIRS)
for dir in $? ; do \
if [ -d "$(DESTDIR)$(datadir)"/$${dir} ] ; then \
$(RMR) "$(DESTDIR)$(datadir)"/$${dir} ; \
fi ; \
done ;
|
debug log:
solving 317bd07 ...
found 317bd07 in https://list.orgmode.org/orgmode/CAKjxQA3_PEaV-F8qqpSHEZGUOgat1UPrgMqRkbBPvLKGeRTN2Q@mail.gmail.com/
found 8b06158 in https://git.savannah.gnu.org/cgit/emacs/org-mode.git
preparing index
index prepared:
100644 8b0615851018eedf1860e4b21bf41e058767b745 etc/Makefile
applying [1/1] https://list.orgmode.org/orgmode/CAKjxQA3_PEaV-F8qqpSHEZGUOgat1UPrgMqRkbBPvLKGeRTN2Q@mail.gmail.com/
diff --git a/etc/Makefile b/etc/Makefile
index 8b06158..317bd07 100644
Checking patch etc/Makefile...
Applied patch etc/Makefile cleanly.
index at:
100644 4c6027c588d16d6d1a20324750cb809ebe861fc5 etc/Makefile
(*) Git path names are given by the tree(s) the blob belongs to.
Blobs themselves have no identifier aside from the hash of its contents.^
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).