aboutsummaryrefslogtreecommitdiff
path: root/lib/libdisk/Makefile
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-04-28 23:57:04 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-04-28 23:57:04 +0000
commitaded89c1b1db4cfdff1370be82fd026b40b66bdd (patch)
tree52b9513433e8fa4d94139f8ec002668ef2560b11 /lib/libdisk/Makefile
parent2f688f82da4d1cbda7aa9e1a6ca9cdf948c047fa (diff)
downloadsrc-aded89c1b1db4cfdff1370be82fd026b40b66bdd.tar.gz
src-aded89c1b1db4cfdff1370be82fd026b40b66bdd.zip
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!
Notes
Notes: svn path=/head/; revision=8153
Diffstat (limited to 'lib/libdisk/Makefile')
-rw-r--r--lib/libdisk/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/libdisk/Makefile b/lib/libdisk/Makefile
new file mode 100644
index 000000000000..e4396f542af9
--- /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}