From 773ad9f330436a3c7484840bf3a542958fd14c96 Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 28 Apr 1995 23:57:04 +0000 Subject: This is a revision 0.00 of the backend stuff for the fdisk/disklabel stuff in the new sysinstall. If you want to give a helping hand, then send email to phk@FreeBSD.ORG. DO NOT COMMIT TO THIS DIRECTORY! --- lib/libdisk/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/libdisk/Makefile (limited to 'lib/libdisk/Makefile') diff --git a/lib/libdisk/Makefile b/lib/libdisk/Makefile new file mode 100644 index 0000000..e4396f5 --- /dev/null +++ b/lib/libdisk/Makefile @@ -0,0 +1,11 @@ +.PATH: /usr/src/sbin/disklabel +OBJS= tst01.o blocks.o disklabel.o dkcksum.o chunk.o disk.o change.o \ + create_chunk.o +CFLAGS+= -Wall + +test: tst01 + cp tst01 /0 + ./tst01 sd0 + +tst01: ${OBJS} + cc ${CFLAGS} -static -o tst01 ${OBJS} -- cgit v1.1