about summary refs log tree commit diff
path: root/programs.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-01T11·20+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-01T11·20+0100
commitec1738589a3aa1dd59e476de09ae2721d51b3e6e (patch)
tree12ce1195b2eee732487a4e89519c4cffb086f8eb /programs.mk
parent35107038f7c726f5ef8d7ab014ad45c73970e65d (diff)
Make variable names more regular
Diffstat (limited to 'programs.mk')
-rw-r--r--programs.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/programs.mk b/programs.mk
index 0478e16d0bd6..30539d129055 100644
--- a/programs.mk
+++ b/programs.mk
@@ -1,4 +1,4 @@
-programs_list :=
+programs-list :=
 
 # Build a program with symbolic name $(1).  The program is defined by
 # various variables prefixed by ‘$(1)_’:
@@ -56,7 +56,7 @@ define build-program =
   $(1)_DEPS := $$(foreach fn, $$($(1)_OBJS), $$(call filename-to-dep, $$(fn)))
   -include $$($(1)_DEPS)
 
-  programs_list += $$($(1)_PATH)
-  clean_files += $$($(1)_PATH) $$(_d)/*.o $$(_d)/.*.dep $$($(1)_DEPS) $$($(1)_OBJS)
-  dist_files += $$(_srcs)
+  programs-list += $$($(1)_PATH)
+  clean-files += $$($(1)_PATH) $$(_d)/*.o $$(_d)/.*.dep $$($(1)_DEPS) $$($(1)_OBJS)
+  dist-files += $$(_srcs)
 endef