blob: 44b47d198faaa2a80dfe8d74e05353c416b848f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# $Id: Makefile,v 1.16 1996/06/23 13:11:51 bde Exp $
LIB= disk
SRCS= blocks.c disklabel.c dkcksum.c chunk.c disk.c change.c \
create_chunk.c rules.c write_disk.c data.c
CFLAGS+= -Wall
CLEANFILES+= tmp.c tst01 tst01.o data.c
VPATH= ${.CURDIR}/../../sbin/disklabel
NOPROFILE= yes
NOSHARED= yes
NOPIC= yes
MAN3= libdisk.3
MLINKS+= libdisk.3 Open_Disk.3 \
libdisk.3 Clone_Disk.3 \
libdisk.3 Free_Disk.3 \
libdisk.3 Debug_Disk.3 \
libdisk.3 Set_Bios_Geom.3 \
libdisk.3 Delete_Chunk.3 \
libdisk.3 Collapse_Disk.3 \
libdisk.3 Collapse_Chunk.3 \
libdisk.3 Create_Chunk.3 \
libdisk.3 All_FreeBSD.3 \
libdisk.3 CheckRules.3 \
libdisk.3 Disk_Names.3 \
libdisk.3 Set_Boot_Mgr.3 \
libdisk.3 Set_Boot_Blocks.3 \
libdisk.3 Write_Disk.3 \
libdisk.3 Cyl_Aligned.3 \
libdisk.3 Next_Cyl_Aligned.3 \
libdisk.3 Prev_Cyl_Aligned.3 \
libdisk.3 Track_Aligned.3 \
libdisk.3 Next_Track_Aligned.3 \
libdisk.3 Prev_Track_Aligned.3 \
libdisk.3 Create_Chunk_DWIM.3 \
libdisk.3 MakeDev.3 \
libdisk.3 MakeDevDisk.3 \
libdisk.3 ShowChunkFlags.3 \
libdisk.3 ChunkCanBeRoot.3
.include <bsd.lib.mk>
BOOTS=/usr/mdec
data.c: ${.CURDIR}/libdisk.h ${BOOTS}/boot1 ${BOOTS}/boot2
file2c 'const unsigned char boot1[] = {' '};' \
< ${BOOTS}/boot1 > tmp.c
file2c 'const unsigned char boot2[] = {' '};' \
< ${BOOTS}/boot2 >> tmp.c
mv -f tmp.c data.c
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
|