summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 94d8380..97165b1 100644
--- a/Makefile
+++ b/Makefile
@@ -50,10 +50,10 @@ $(OBJDIR)/%.o: $(TSTDIR)/%.c
@echo " CC $(@:$(OBJDIR)/%=%)"
@$(CC) $(CFLAGS) -c -o $@ -I $(SRCDIR) $(TSTDIR)/$*.c
-test: bin/test
- @bin/test
+test: $(BINDIR)/test
+ @$(BINDIR)/test
clean:
- rm -f bin/* obj/*
+ rm -f $(BINDIR)/* $(OBJDIR)/*
-.PHONY: clean test
+.PHONY: all clean test