* [PATCH] xfstests: Fix *FLAGS passing and dependencies.
@ 2009-02-02 9:08 Arkadiusz Miśkiewicz
0 siblings, 0 replies; 3+ messages in thread
From: Arkadiusz Miśkiewicz @ 2009-02-02 9:08 UTC (permalink / raw)
To: xfs; +Cc: root
From: root <root@farm.lan>
Pass *FLAGS in some targets.
Drop LIBHANDLE, LIBATTR and LIBACL from deps since there are in form
"-llibrary".
Signed-off-by: root <root@farm.lan>
---
src/Makefile | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/Makefile b/src/Makefile
index ad4c204..634e1b3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -58,10 +58,10 @@ genhashnames: genhashnames.o
nametest: nametest.o $(LIBTEST)
$(LINKTEST) $(LIBTEST) $(LDLIBS)
-bstat: bstat.o $(LIBHANDLE)
+bstat: bstat.o
$(LINKTEST) $(LIBHANDLE) $(LDLIBS)
-t_immutable: t_immutable.o $(LIBHANDLE) $(LIBACL)
+t_immutable: t_immutable.o
$(LINKTEST) $(LIBACL) $(LIBHANDLE) $(LDLIBS)
loggen: loggen.o
@@ -82,17 +82,17 @@ multi_open_unlink: multi_open_unlink.o
#scaleread: scaleread.o $(LDLIBS)
# $(LINKTEST)
-acl_get: acl_get.o $(LIBACL) $(LIBATTR)
+acl_get: acl_get.o
$(LINKTEST) $(LIBACL) $(LIBATTR) $(LDLIBS)
-dmiperf: dmiperf.o $(LIBATTR)
+dmiperf: dmiperf.o
$(LINKTEST) $(LIBATTR) $(LDLIBS)
preallo_rw_pattern_reader:
- $(CC) -DREAD iopat.c -o preallo_rw_pattern_reader
+ $(CC) $(GCFLAGS) $(LDFLAGS) -DREAD iopat.c -o preallo_rw_pattern_reader
preallo_rw_pattern_writer:
- $(CC) -DWRITE iopat.c -o preallo_rw_pattern_writer
+ $(CC) $(GCFLAGS) $(LDFLAGS) -DWRITE iopat.c -o preallo_rw_pattern_writer
ftrunc: ftrunc.o
$(LINKTEST)
--
1.6.1.1
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH] xfstests: Fix *FLAGS passing and dependencies.
@ 2009-02-02 9:09 Arkadiusz Miśkiewicz
2009-02-02 20:16 ` Eric Sandeen
0 siblings, 1 reply; 3+ messages in thread
From: Arkadiusz Miśkiewicz @ 2009-02-02 9:09 UTC (permalink / raw)
To: xfs
[-- Attachment #1: Type: text/plain, Size: 1380 bytes --]
Pass *FLAGS in some targets.
Drop LIBHANDLE, LIBATTR and LIBACL from deps since there are in form
"-llibrary".
Signed-off-by: Arkadiusz MiÅkiewicz <arekm@maven.pl>
---
src/Makefile | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/Makefile b/src/Makefile
index ad4c204..634e1b3 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -58,10 +58,10 @@ genhashnames: genhashnames.o
nametest: nametest.o $(LIBTEST)
$(LINKTEST) $(LIBTEST) $(LDLIBS)
-bstat: bstat.o $(LIBHANDLE)
+bstat: bstat.o
$(LINKTEST) $(LIBHANDLE) $(LDLIBS)
-t_immutable: t_immutable.o $(LIBHANDLE) $(LIBACL)
+t_immutable: t_immutable.o
$(LINKTEST) $(LIBACL) $(LIBHANDLE) $(LDLIBS)
loggen: loggen.o
@@ -82,17 +82,17 @@ multi_open_unlink: multi_open_unlink.o
#scaleread: scaleread.o $(LDLIBS)
# $(LINKTEST)
-acl_get: acl_get.o $(LIBACL) $(LIBATTR)
+acl_get: acl_get.o
$(LINKTEST) $(LIBACL) $(LIBATTR) $(LDLIBS)
-dmiperf: dmiperf.o $(LIBATTR)
+dmiperf: dmiperf.o
$(LINKTEST) $(LIBATTR) $(LDLIBS)
preallo_rw_pattern_reader:
- $(CC) -DREAD iopat.c -o preallo_rw_pattern_reader
+ $(CC) $(GCFLAGS) $(LDFLAGS) -DREAD iopat.c -o preallo_rw_pattern_reader
preallo_rw_pattern_writer:
- $(CC) -DWRITE iopat.c -o preallo_rw_pattern_writer
+ $(CC) $(GCFLAGS) $(LDFLAGS) -DWRITE iopat.c -o preallo_rw_pattern_writer
ftrunc: ftrunc.o
$(LINKTEST)
--
1.6.1.1
[-- Attachment #2: Type: text/plain, Size: 121 bytes --]
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] xfstests: Fix *FLAGS passing and dependencies.
2009-02-02 9:09 [PATCH] xfstests: Fix *FLAGS passing and dependencies Arkadiusz Miśkiewicz
@ 2009-02-02 20:16 ` Eric Sandeen
0 siblings, 0 replies; 3+ messages in thread
From: Eric Sandeen @ 2009-02-02 20:16 UTC (permalink / raw)
To: Arkadiusz Miśkiewicz; +Cc: xfs
Arkadiusz Miśkiewicz wrote:
> Pass *FLAGS in some targets.
>
> Drop LIBHANDLE, LIBATTR and LIBACL from deps since there are in form
> "-llibrary".
ugh, weird.
>
> Signed-off-by: Arkadiusz Miśkiewicz <arekm@maven.pl>
Looks fine to me. I'll merge it to the kernel.org repo.
-Eric
> ---
> src/Makefile | 12 ++++++------
> 1 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/src/Makefile b/src/Makefile
> index ad4c204..634e1b3 100644
> --- a/src/Makefile
> +++ b/src/Makefile
> @@ -58,10 +58,10 @@ genhashnames: genhashnames.o
> nametest: nametest.o $(LIBTEST)
> $(LINKTEST) $(LIBTEST) $(LDLIBS)
>
> -bstat: bstat.o $(LIBHANDLE)
> +bstat: bstat.o
> $(LINKTEST) $(LIBHANDLE) $(LDLIBS)
>
> -t_immutable: t_immutable.o $(LIBHANDLE) $(LIBACL)
> +t_immutable: t_immutable.o
> $(LINKTEST) $(LIBACL) $(LIBHANDLE) $(LDLIBS)
>
> loggen: loggen.o
> @@ -82,17 +82,17 @@ multi_open_unlink: multi_open_unlink.o
> #scaleread: scaleread.o $(LDLIBS)
> # $(LINKTEST)
>
> -acl_get: acl_get.o $(LIBACL) $(LIBATTR)
> +acl_get: acl_get.o
> $(LINKTEST) $(LIBACL) $(LIBATTR) $(LDLIBS)
>
> -dmiperf: dmiperf.o $(LIBATTR)
> +dmiperf: dmiperf.o
> $(LINKTEST) $(LIBATTR) $(LDLIBS)
>
> preallo_rw_pattern_reader:
> - $(CC) -DREAD iopat.c -o preallo_rw_pattern_reader
> + $(CC) $(GCFLAGS) $(LDFLAGS) -DREAD iopat.c -o preallo_rw_pattern_reader
>
> preallo_rw_pattern_writer:
> - $(CC) -DWRITE iopat.c -o preallo_rw_pattern_writer
> + $(CC) $(GCFLAGS) $(LDFLAGS) -DWRITE iopat.c -o preallo_rw_pattern_writer
>
> ftrunc: ftrunc.o
> $(LINKTEST)
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-02 20:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-02 9:09 [PATCH] xfstests: Fix *FLAGS passing and dependencies Arkadiusz Miśkiewicz
2009-02-02 20:16 ` Eric Sandeen
-- strict thread matches above, loose matches on Subject: below --
2009-02-02 9:08 Arkadiusz Miśkiewicz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox