Skip to content

Commit

Permalink
Moved libgeom.so dependencies to where they belong.
Browse files Browse the repository at this point in the history
Reviewed by:	phk
Approved by:	re (scottl)
  • Loading branch information
Ruslan Ermilov authored and Ruslan Ermilov committed May 17, 2003
1 parent ed2f358 commit 0b00d54
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions lib/libgeom/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ CFLAGS += -I${.CURDIR} -g

WARNS?= 3

DPADD= ${LIBBSDXML} ${LIBSBUF}
LDADD= -lbsdxml -lsbuf

MAN= libgeom.3

MLINKS+= \
Expand Down
4 changes: 2 additions & 2 deletions sbin/bsdlabel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ LINKS= ${BINDIR}/bsdlabel ${BINDIR}/disklabel
MLINKS+= bsdlabel.8 disklabel.8
.endif

DDADD= ${LIBGEOM}
LDADD= -lgeom -lbsdxml -lsbuf
DPADD= ${LIBGEOM}
LDADD= -lgeom

.if ${MACHINE} == "pc98"
CFLAGS+= -DPC98
Expand Down
4 changes: 2 additions & 2 deletions sbin/gbde/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ CFLAGS+= -I${.CURDIR}/../../sys
CLEANFILES+= template.c

MAN= gbde.8
DPADD= ${LIBMD} ${LIBUTIL} ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
LDADD= -lmd -lutil -lgeom -lbsdxml -lsbuf
DPADD= ${LIBMD} ${LIBUTIL} ${LIBGEOM}
LDADD= -lmd -lutil -lgeom

template.c: template.txt
file2c 'const char template[] = {' ',0};' \
Expand Down
4 changes: 2 additions & 2 deletions sbin/sunlabel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ SRCS=sunlabel.c geom_sunlabel_enc.c
NOMAN=
WARNS=5

DPADD= ${LIBGEOM} ${LIBBSDXML} ${LIBSBUF}
LDADD= -lgeom -lbsdxml -lsbuf
DPADD= ${LIBGEOM}
LDADD= -lgeom

.PATH: ${.CURDIR}/../../sys/geom

Expand Down

0 comments on commit 0b00d54

Please sign in to comment.