diff options
author | David Bremner <bremner@debian.org> | 2011-12-12 11:54:16 -0400 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2011-12-12 11:54:16 -0400 |
commit | 518d4ef7d0a45e7b9a63a377892daf9b7f2f6791 (patch) | |
tree | a55875d152b9ab49e7380a2e6d02cc7e95dae00a /util | |
parent | 1df71b5510599bfd111db7398a666a87f3d63ba5 (diff) |
build-system: clean $(libutil_modules) rather than listing them individually.
This matches the way the other 'Makefile.local's work.
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/Makefile.local b/util/Makefile.local index 03408995..26e4c3f3 100644 --- a/util/Makefile.local +++ b/util/Makefile.local @@ -10,4 +10,4 @@ libutil_modules := $(libutil_c_srcs:.c=.o) $(dir)/libutil.a: $(libutil_modules) $(call quiet,AR) rcs $@ $^ -CLEAN := $(CLEAN) $(dir)/xutil.o $(dir)/error_util.o $(dir)/libutil.a +CLEAN := $(CLEAN) $(libutil_modules) $(dir)/libutil.a |