blob: 4af2b4a4e95f232d5a70de8a1bfa7a2b8d2115b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Remove bogus depend otherwise things get rebuilt way too often
http://bugs.gentoo.org/137823
--- Makefile
+++ Makefile
@@ -91,14 +91,12 @@
everything: all mdadm.static mdadm.uclibc swap_super test_stripe mdassemble mdassemble.uclibc mdassemble.static mdassemble.man
# mdadm.tcc doesn't work..
-mdadm : rmconf $(OBJS)
+mdadm : $(OBJS)
$(CC) $(LDFLAGS) -o mdadm $(OBJS) $(LDLIBS)
mdadm.static : STATIC=-DSTATIC
-mdadm.static : rmconf $(OBJS)
+mdadm.static : $(OBJS)
$(CC) $(LDFLAGS) -DSTATIC -static -o mdadm.static $(OBJS) SHA1.o sha1.o
-rmconf:
- rm -f config.o
mdadm.tcc : $(SRCS) mdadm.h
$(TCC) -o mdadm.tcc $(SRCS)
|