diff options
author | Max Horn | 2003-09-17 23:34:56 +0000 |
---|---|---|
committer | Max Horn | 2003-09-17 23:34:56 +0000 |
commit | f6ecb2e95d5934a70e73b0164a745c3131cfce1a (patch) | |
tree | 8427256e0be94b73b94e068010574ecb2a5ac43a | |
parent | 3c55fd316fb1e9203744fd520c9553eedb15a348 (diff) | |
download | scummvm-rg350-f6ecb2e95d5934a70e73b0164a745c3131cfce1a.tar.gz scummvm-rg350-f6ecb2e95d5934a70e73b0164a745c3131cfce1a.tar.bz2 scummvm-rg350-f6ecb2e95d5934a70e73b0164a745c3131cfce1a.zip |
removed the module.mk dependency again since it make 'ar' add module.mk to the lib.a file
svn-id: r10285
-rw-r--r-- | common.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.rules b/common.rules index 4720e9b3c2..97e7507d99 100644 --- a/common.rules +++ b/common.rules @@ -10,7 +10,7 @@ clean-$(MODULE): clean-% : -$(RM) $(MODULE_OBJS-$*) $(MODULE_LIB-$*) # Convenience library target -$(MODULE_LIB-$(MODULE)): $(MODULE_OBJS) $(MODULE)/module.mk +$(MODULE_LIB-$(MODULE)): $(MODULE_OBJS) -$(RM) $@ $(AR) $@ $+ $(RANLIB) $@ |