aboutsummaryrefslogtreecommitdiffstats
path: root/tools/blktap/parallax/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/blktap/parallax/Makefile')
-rw-r--r--tools/blktap/parallax/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/blktap/parallax/Makefile b/tools/blktap/parallax/Makefile
index a6a0c0a3f8..8500c1728b 100644
--- a/tools/blktap/parallax/Makefile
+++ b/tools/blktap/parallax/Makefile
@@ -43,11 +43,14 @@ DEPS = .*.d
OBJS = $(patsubst %.c,%.o,$(SRCS))
IBINS = parallax $(VDI_TOOLS)
+.PHONY: all
all: $(VDI_TOOLS) parallax blockstored
+.PHONY: install
install: all
$(INSTALL_PROG) $(IBINS) $(DESTDIR)$(PARALLAX_INSTALL_DIR)
+.PHONY: clean
clean:
rm -rf *.o *~ $(DEPS) xen TAGS $(VDI_TOOLS) parallax vdi_unittest
@@ -57,5 +60,4 @@ parallax: $(PLX_SRCS)
${VDI_TOOLS}: %: %.c $(VDI_SRCS)
$(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS) $(VDI_SRCS)
-.PHONY: TAGS clean install rpm
-include $(DEPS)