13 lines
204 B
Makefile
13 lines
204 B
Makefile
#
|
|
# @(#)Makefile 1.1 94/10/31 SMI
|
|
#
|
|
HFILES = fcntl.h
|
|
|
|
all: $(HFILES)
|
|
|
|
clean:
|
|
|
|
install: $(HFILES)
|
|
install -d -o bin -m 755 ${DESTDIR}/usr/include/sys
|
|
install -m 444 $(HFILES) $(DESTDIR)/usr/include/sys
|