aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1162053..fab281c 100644
--- a/Makefile
+++ b/Makefile
@@ -55,11 +55,11 @@ EXAFLAGS = $(CFLAGS) -I$(INCLUDE)
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# Targets
-.PHONY: default examples clean
+.PHONY: all examples clean
-default: $(BUILD)/$(SRCDIR) $(TARGET)
+all: $(BUILD)/$(SRCDIR) $(TARGET)
-examples: default $(BUILD)/$(EXADIR) $(EXAMPLES)
+examples: all $(BUILD)/$(EXADIR) $(EXAMPLES)
clean:
rm -f $(TARGET) $(OBJ) $(EXAMPLES) $(DEPS)