mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 01:38:57 +00:00
a29b6fccc0
Rules for only one fat & one extended in MBR.
15 lines
305 B
Makefile
15 lines
305 B
Makefile
.PATH: /usr/src/sbin/disklabel
|
|
OBJS= tst01.o blocks.o disklabel.o dkcksum.o chunk.o disk.o change.o \
|
|
create_chunk.o rules.o write_disk.o
|
|
CFLAGS+= -Wall -g
|
|
|
|
test: tst01
|
|
cp tst01 /0
|
|
./tst01 wd1
|
|
|
|
tst01: ${OBJS}
|
|
cc ${CFLAGS} -static -o tst01 ${OBJS} -lreadline -ltermcap
|
|
|
|
clean:
|
|
rm -f *.o *.core tst01
|