diff options
author | mattkae <mattkae@protonmail.com> | 2022-06-07 08:23:47 -0400 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2022-06-07 08:23:47 -0400 |
commit | bd18a38c2898548a3664a9ddab9f79c84f2caf4a (patch) | |
tree | 95b9933376770381bd8859782ae763be81c2d72b /elpa/org-9.5.2/etc/Makefile | |
parent | b07628dddf418d4f47b858e6c35fd3520fbaeed2 (diff) | |
parent | ef160dea332af4b4fe5e2717b962936c67e5fe9e (diff) |
Merge conflict
Diffstat (limited to 'elpa/org-9.5.2/etc/Makefile')
-rw-r--r-- | elpa/org-9.5.2/etc/Makefile | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/elpa/org-9.5.2/etc/Makefile b/elpa/org-9.5.2/etc/Makefile deleted file mode 100644 index ab5c988..0000000 --- a/elpa/org-9.5.2/etc/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -ETCDIRS = styles schema csl --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 ; |