aboutsummaryrefslogtreecommitdiff
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 a979d65..0768a7f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-.PHONY: imv obj clean check install uninstall
+.PHONY: imv clean check install uninstall
PREFIX ?= /usr
BINPREFIX ?= $(PREFIX)/bin
@@ -26,14 +26,14 @@ CFLAGS += -DIMV_VERSION=\"$(VERSION)\"
imv: $(TARGET)
-$(TARGET): obj
+$(TARGET): $(OBJECTS)
@echo "LINKING $@"
- $(MUTE)$(CC) -o $@ $(OBJECTS) $(LDLIBS) $(LDFLAGS)
+ $(MUTE)$(CC) -o $@ $^ $(LDLIBS) $(LDFLAGS)
debug: CFLAGS += -DDEBUG -g -pg
debug: $(TARGET)
-obj: $(BUILDDIR) $(OBJECTS)
+$(OBJECTS): | $(BUILDDIR)
$(BUILDDIR):
$(MUTE)mkdir -p $(BUILDDIR)