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>
23 lines
392 B
Makefile
23 lines
392 B
Makefile
include ../../common.mak
|
|
|
|
ALL_CPPFLAGS += -I../include -I../boot
|
|
|
|
libs = $(rootdir)/libdasd/libdasd.a \
|
|
$(rootdir)/libutil/libutil.a
|
|
|
|
all: tunedasd
|
|
|
|
|
|
objects = tunedasd.o disk.o
|
|
|
|
tunedasd: $(objects) $(libs)
|
|
|
|
install: all
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(BINDIR)
|
|
$(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 tunedasd $(DESTDIR)$(BINDIR)
|
|
|
|
clean:
|
|
rm -f *.o tunedasd
|
|
|
|
.PHONY: all install clean
|