summaryrefslogtreecommitdiff
path: root/extras/dasd_id/Makefile
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2007-03-12 13:17:23 +0100
committerKay Sievers <kay.sievers@vrfy.org>2007-03-12 13:17:23 +0100
commit9923ff145022a346612ceac7c6534b33814376f6 (patch)
tree8ed5080e8b5fc5e614c8cf24895ced6321f531fd /extras/dasd_id/Makefile
parent50e3e2b0df91cd81ba20ddd2f35030cc6a877c70 (diff)
delete dasd_id, it moved to s390-tools
These s390-tools-1.6.0 (applicable for the "October 2005 stream") replace s390-tools-1.5.4. New tools: * tape390_crypt: Tool to control and query crypto settings for 3592 zSeries tape devices. * mon_fsstatd: Daemon that writes filesystem utilization data to the z/VM monitor stream. * dumpconf: Allows to configure the dump device used for system dump in case a kernel panic occurs. * dasdinfo: Display unique DASD ID, either uid or volser. * 59-dasd.rules: udev rules for unique DASD device nodes created in /dev/disk/. http://www.ibm.com/developerworks/linux/linux390/s390-tools-1.6.0.html
Diffstat (limited to 'extras/dasd_id/Makefile')
-rw-r--r--extras/dasd_id/Makefile70
1 files changed, 0 insertions, 70 deletions
diff --git a/extras/dasd_id/Makefile b/extras/dasd_id/Makefile
deleted file mode 100644
index 493c80ef8d..0000000000
--- a/extras/dasd_id/Makefile
+++ /dev/null
@@ -1,70 +0,0 @@
-# Makefile for udev extra invoked from the udev main Makefile
-#
-# Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
-#
-# Released under the GNU General Public License, version 2.
-#
-
-PROG = dasd_id
-OBJ =
-HEADERS =
-GEN_HEADERS =
-MAN_PAGES =
-
-prefix =
-etcdir = ${prefix}/etc
-sbindir = ${prefix}/sbin
-usrbindir = ${prefix}/usr/bin
-usrsbindir = ${prefix}/usr/sbin
-libudevdir = ${prefix}/lib/udev
-mandir = ${prefix}/usr/share/man
-configdir = ${etcdir}/udev/
-
-INSTALL = install -c
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_DATA = ${INSTALL} -m 644
-INSTALL_SCRIPT = ${INSTALL}
-
-all: $(PROG) $(MAN_PAGES)
-.PHONY: all
-.DEFAULT: all
-
-%.o: %.c $(GEN_HEADERS)
- $(E) " CC " $@
- $(Q) $(CC) -c $(CFLAGS) $< -o $@
-
-$(PROG): %: $(HEADERS) %.o $(OBJS)
- $(E) " LD " $@
- $(Q) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIB_OBJS)
-
-# man pages
-%.8: %.xml
- $(E) " XMLTO " $@
- $(Q) xmlto man $?
-.PRECIOUS: %.8
-
-clean:
- $(E) " CLEAN "
- $(Q) rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
-.PHONY: clean
-
-install-bin: all
- $(INSTALL_PROGRAM) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG)
-.PHONY: install-bin
-
-uninstall-bin:
- - rm $(DESTDIR)$(libudevdir)/$(PROG)
-.PHONY: uninstall-bin
-
-install-man:
- $(INSTALL_DATA) -D $(PROG).8 $(DESTDIR)$(mandir)/man8/$(PROG).8
-.PHONY: install-man
-
-uninstall-man:
- -rm -f $(DESTDIR)$(mandir)/man8/$(PROG).8
-.PHONY: uninstall-man
-
-install-config:
- @echo "no config file to install"
-.PHONY: install-config
-