diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-30 14:06:13 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-30 14:06:13 +0000 |
commit | a0822d7f1806b8910dd555fce87c780026a45fe6 (patch) | |
tree | d95a0d7e4e6e3ffad07e10e82db2bdde188c981b | |
parent | db675038dce95e18044b2b53b3d7261098d89166 (diff) |
(include ../Makeconf): BEFORE dependencies.
(all): Delete target.
($(targets)): Each target depends on its associated .o.
-rw-r--r-- | ufs-utils/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ufs-utils/Makefile b/ufs-utils/Makefile index 01845450..9e8a68ab 100644 --- a/ufs-utils/Makefile +++ b/ufs-utils/Makefile @@ -28,9 +28,10 @@ installationdir = $(sbindir) OBJS = $(SRCS:.c=.o) -all: $(targets) +include ../Makeconf mkfs.ufs: mkfs.o dlabel.o ../libshouldbeinlibc/libshouldbeinlibc.a -include ../Makeconf +$(targets): %: %.o + |