19 lines
247 B
Makefile
19 lines
247 B
Makefile
#
|
|
# @(#)Makefile 1.1 92/07/30 SMI
|
|
#
|
|
HDIR = $(DESTDIR)/usr/include/scsi/conf
|
|
CSRC =
|
|
HFILES = autoconf.h device.h
|
|
SUBDIR =
|
|
|
|
all: $(HFILES)
|
|
|
|
install:
|
|
|
|
install_h: all
|
|
rm -rf $(HDIR)
|
|
install -d -m 755 $(HDIR)
|
|
install -m 444 $(HFILES) $(HDIR)
|
|
|
|
FRC:
|