summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2017-12-02 01:13:33 +0100
committerpacien2017-12-02 01:13:33 +0100
commit2c8edf0e358c12619ec3f9d1e98c0035246218f9 (patch)
treefefad5fd683d12fb6ae9dfa7d18e5963897edda8
parent650c4400c63d8ec8473321862046240cb873ec8d (diff)
downloadmorpher-2c8edf0e358c12619ec3f9d1e98c0035246218f9.tar.gz
Add missing target to defaults list
Signed-off-by: pacien <pacien.trangirard@pacien.net>
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index bc61f45..3e6b521 100644
--- a/makefile
+++ b/makefile
@@ -18,9 +18,9 @@ PERCENT := %
18 18
19 19
20##### MAIN TARGETS 20##### MAIN TARGETS
21.PHONY: all test source api-doc report clean 21.PHONY: all test source report clean
22 22
23all: source test report; 23all: source test api-doc report;
24 24
25.SECONDEXPANSION: 25.SECONDEXPANSION:
26source: $$(patsubst $(SRC_DIR)/$$(PERCENT).c,$(BIN_DIR)/$$(PERCENT).o,$$(wildcard $(SRC_DIR)/**/*.c)); 26source: $$(patsubst $(SRC_DIR)/$$(PERCENT).c,$(BIN_DIR)/$$(PERCENT).o,$$(wildcard $(SRC_DIR)/**/*.c));