diff options
author | 2024-07-09 12:28:43 +0200 | |
---|---|---|
committer | 2024-07-09 12:28:43 +0200 | |
commit | 0d1b4a86e5a6e1ec56facc7d207201ac18c86bf4 (patch) | |
tree | 83dd3b825d539fc60f8540cc8ea921cd8eb8e5c1 | |
parent | 089ba73c3e357cb25d18c99fd05e70c8340578d1 (diff) | |
download | website-0d1b4a86e5a6e1ec56facc7d207201ac18c86bf4.tar.gz website-0d1b4a86e5a6e1ec56facc7d207201ac18c86bf4.zip |
Rename CONFIGS variable to CFG
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -5,7 +5,8 @@ # .rphp # Excludes: # master.rhtml -SRC != find -E * ! -name 'master.rhtml' -regex '.*\.r(html|php)*' +SRC != find -E * ! -name 'master.rhtml' -regex '.*\.r(html|php)' +CFG != find -E * -regex '.*\.r(html|php)\.config' # The first assignment is to change extension from .rhtml to .html. The second # one is used to replace .rphp with .php (note the use of :=, in this way, the @@ -17,8 +18,6 @@ include config.mk DEST = ~/www/alessandroiezzi.it -CONFIGS != find . -name "*.rhtml.config" | grep -v master | sed 's|\./||g' - all: ${OBJ} install: all |