summaryrefslogtreecommitdiff
path: root/extras/multipath-tools/multipathd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'extras/multipath-tools/multipathd/Makefile')
-rw-r--r--extras/multipath-tools/multipathd/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/extras/multipath-tools/multipathd/Makefile b/extras/multipath-tools/multipathd/Makefile
deleted file mode 100644
index 82c77b8351..0000000000
--- a/extras/multipath-tools/multipathd/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-EXEC = multipathd
-
-CC = gcc
-GZIP = /bin/gzip -9 -c
-
-bindir = /usr/bin
-mandir = /usr/share/man/man8
-rcdir = /etc/init.d
-
-CFLAGS = -pipe -g -O2 -Wall -Wunused -Wstrict-prototypes -DDEBUG=1
-LDFLAGS = -lpthread -ldevmapper -lsysfs
-
-OBJS = main.o devinfo.o checkers.o
-
-$(EXEC): $(OBJS)
- $(CC) $(LDFLAGS) $(OBJS) -o $(EXEC)
- strip $(EXEC)
-
-install:
- install -d $(bindir)
- install -m 755 $(EXEC) $(bindir)
- install -d $(rcdir)
- install -m 755 multipathd.init $(rcdir)/$(EXEC)
-
-uninstall:
- rm -f $(bindir)/$(EXEC)
- rm -f $(rcdir)/$(EXEC)
-
-clean:
- rm -f core *.o $(EXEC) *.gz
-
-spotless: clean