diff options
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |