mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
There are no users of libu2s anymore. Remove it. Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
22 lines
479 B
Makefile
22 lines
479 B
Makefile
include ../common.mak
|
|
|
|
libs = $(rootdir)/libvtoc/libvtoc.a \
|
|
$(rootdir)/libzds/libzds.a \
|
|
$(rootdir)/libdasd/libdasd.a \
|
|
$(rootdir)/libutil/libutil.a
|
|
|
|
all: fdasd
|
|
|
|
fdasd: fdasd.o $(libs)
|
|
|
|
install: all
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man8
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 fdasd $(DESTDIR)$(BINDIR)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 fdasd.8 \
|
|
$(DESTDIR)$(MANDIR)/man8
|
|
|
|
clean:
|
|
rm -f *.o *~ fdasd core
|
|
|
|
.PHONY: all install clean
|