mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
15 lines
147 B
Makefile
15 lines
147 B
Makefile
include ../common.mak
|
|
|
|
lib = libdasd.a
|
|
|
|
all: $(lib)
|
|
|
|
objects = dasd_sys.o dasd_ioctl.o
|
|
|
|
$(lib): $(objects)
|
|
|
|
install: all
|
|
|
|
clean:
|
|
rm -f *.o $(lib)
|