diff options
author | Ryan Kavanagh <rak@rak.ac> | 2023-02-09 18:12:08 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2023-02-09 18:12:08 -0500 |
commit | 2a96a851a8db91d9ee6338f123f0abd42b1812c9 (patch) | |
tree | 80e522e0729518d68b45ec858b3e4cf63348d45a /emacsen | |
parent | Merge commit 'bf77e060f17055a5efa6941be7a94cb278d3935c' as 'dot_emacs.d/local... (diff) |
actually install dictem
Diffstat (limited to '')
-rw-r--r-- | emacsen/Makefile | 48 | ||||
m--------- | emacsen/dictem | 0 |
2 files changed, 0 insertions, 48 deletions
diff --git a/emacsen/Makefile b/emacsen/Makefile deleted file mode 100644 index ce070d9..0000000 --- a/emacsen/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -EMACSD=~/.emacs.d/ - -SUBDIRS = dictem - -MAKEDIRS = $(SUBDIRS:%=make-%) -INSTALLDIRS = $(SUBDIRS:%=install-%) -CLEANDIRS = $(SUBDIRS:%=clean-%) - -all: subdirs - -subdirs: $(MAKEDIRS) - -$(MAKEDIRS): - $(MAKE) -C $(@:make-%=%) - touch $@ - -install: $(INSTALLDIRS) - [ ! -d $(EMACSD)/share/info ] || install-info $(EMACSD)/share/info/*.info $(EMACSD)/share/info/dir - -install-% : make-% -$(INSTALLDIRS): - -mkdir -p $(EMACSD)/$(@:install-%=%) - $(MAKE) -C $(@:install-%=%) install DIR=$(EMACSD)/$(@:install-%=%) - -clean: $(CLEANDIRS) - rm -f make-* - -$(CLEANDIRS): - [ ! -f $(@:clean-%=%)/Makefile ] || $(MAKE) -C $(@:clean-%=%) clean - -# Manual overrides: -make-dictem: - touch $@ - -clean-dictem: - echo $@ - -install-dictem: - -mkdir -p $(EMACSD)/$(@:install-%=%) - install -m 644 $(@:install-%=%)/*.el $(EMACSD)/$(@:install-%=%) - -clobber: - for dir in $(SUBDIRS); do \ - git --git-dir=$${dir}/.git reset --hard HEAD; \ - git --git-dir=$${dir}/.git clean -qxdf; \ - done - -.PHONY: all install clean $(CLEANDIRS) clobber diff --git a/emacsen/dictem b/emacsen/dictem deleted file mode 160000 -Subproject 078e60824eb97ac4e9f0a3033b2f592219a8152 |