freebsd_amp_hwpstate/lib/libdisk/Makefile

24 lines
568 B
Makefile
Raw Normal View History

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 -g
CLEANFILES+= tmp.c tst01 tst01.o data.c
VPATH= ${.CURDIR}/../../sbin/disklabel
NOPROFILE= yes
NOSHARED= yes
1995-04-30 06:19:32 +00:00
.include <bsd.lib.mk>
1995-04-30 06:09:29 +00:00
BOOTS=/usr/mdec
data.c:
1995-04-30 06:09:29 +00:00
file2c 'const unsigned char boot1[] = {' '};' \
< ${BOOTS}/boot1 > tmp.c
file2c 'const unsigned char boot2[] = {' '};' \
< ${BOOTS}/boot2 >> tmp.c
mv tmp.c data.c
tst01: tst01.o libdisk.a
cc ${CFLAGS} -static tst01.o -o tst01 libdisk.a