Parametrize with elisp the output files of the project

This commit is contained in:
2021-08-30 19:04:48 +02:00
parent dae1ad10f9
commit 910c19c510
7 changed files with 58 additions and 11 deletions

View File

@@ -2,5 +2,7 @@ include etc/ctf.mk
CXX = mpic++
CXXFLAGS += -I$(ATRIP_ROOT)/include
CXXFLAGS += -I$(CTF_INCLUDE_PATH)
LDFLAGS += -L$(CTF_BUILD_PATH) -lctf

5
etc/emacs.mk Normal file
View File

@@ -0,0 +1,5 @@
EMACS = emacs -q --batch --load config.el
define tangle
$(EMACS) $(1) --eval "(require 'org)" --eval '(org-babel-tangle)'
endef