Files
s390-tools/tunedasd/src/Makefile
Jan Höppner 57a797350c libu2s: Remove the library
There are no users of libu2s anymore. Remove it.

Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2019-05-21 14:16:53 +02:00

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