equal
deleted
inserted
replaced
52 # When called with -qp, assume an external part (e.g. bash completion) is trying |
52 # When called with -qp, assume an external part (e.g. bash completion) is trying |
53 # to understand our targets. |
53 # to understand our targets. |
54 # Duplication of global targets, needed before ParseConfAndSpec in case we have |
54 # Duplication of global targets, needed before ParseConfAndSpec in case we have |
55 # no configurations. |
55 # no configurations. |
56 help: |
56 help: |
57 # If CONF is not set, look for all available configurations |
57 # If both CONF and SPEC are unset, look for all available configurations by |
58 CONF?= |
58 # setting CONF to the empty string. |
|
59 ifeq ($(SPEC), ) |
|
60 CONF?= |
|
61 endif |
59 endif |
62 endif |
60 |
63 |
61 # ... and then we can include our helper functions |
64 # ... and then we can include our helper functions |
62 include $(root_dir)/make/MakeHelpers.gmk |
65 include $(root_dir)/make/MakeHelpers.gmk |
63 |
66 |