diff options
author | rgrimes <rgrimes@FreeBSD.org> | 2000-01-14 07:57:47 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 2000-01-14 07:57:47 +0000 |
commit | c127d0e61e914c6951d98986385ccb730b115cf9 (patch) | |
tree | e0bf2775a4898eda7838b05b1a539892d8ea781c /lib/libdisk | |
parent | 2801ff847ca9459d227f155a4dedd395b7d35a30 (diff) | |
download | FreeBSD-src-c127d0e61e914c6951d98986385ccb730b115cf9.zip FreeBSD-src-c127d0e61e914c6951d98986385ccb730b115cf9.tar.gz |
Replace beforeinstall target with new variables used by .mk system.
Reviewed by: marcel, and make world
Diffstat (limited to 'lib/libdisk')
-rw-r--r-- | lib/libdisk/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libdisk/Makefile b/lib/libdisk/Makefile index 355018a..f901a76 100644 --- a/lib/libdisk/Makefile +++ b/lib/libdisk/Makefile @@ -3,6 +3,7 @@ LIB= disk SRCS= blocks.c disklabel.c dkcksum.c chunk.c disk.c change.c \ create_chunk.c rules.c write_disk.c +INCS= libdisk.h CFLAGS+= -Wall CLEANFILES+= tmp.c tst01 tst01.o @@ -42,10 +43,5 @@ MLINKS+= libdisk.3 Open_Disk.3 \ .include <bsd.lib.mk> -beforeinstall: - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/libdisk.h \ - ${DESTDIR}/usr/include/libdisk.h - - tst01: tst01.o libdisk.a cc ${CFLAGS} -static tst01.o -o tst01 libdisk.a |