Re: [AD] Allegro 4.2.0 RC2 |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
What about this. Can it break something? It fixes ar warning.
--
Regards,
Michal
ICQ# 175762750
--- makefile.mgw.old Tue Jun 7 21:56:48 2005
+++ makefile.mgw Sun Aug 28 18:46:52 2005
@@ -339,7 +339,7 @@
# -------- link as a static library --------
define MAKE_LIB
- $(AR) rs $(LIB_NAME) $(OBJECTS)
+ $(AR) crs $(LIB_NAME) $(OBJECTS)
endef
COMPILE_FLAGS = -DALLEGRO_STATICLINK
@@ -495,7 +495,7 @@
endif
define MAKE_PLUGIN_LIB
- $(AR) rs $(PLUGIN_LIB) $(PLUGIN_OBJS)
+ $(AR) crs $(PLUGIN_LIB) $(PLUGIN_OBJS)
endef
define LINK_WITH_PLUGINS