[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
Somebody was not careful when editing makefile.vc .
--
Regards,
Michal
--- makefile.vc.old Thu Mar 31 21:56:02 2005
+++ makefile.vc Sun Apr 3 23:01:44 2005
@@ -319,7 +319,7 @@
# -------- link as a static library --------
define MAKE_LIB
- $(RUNNER) $(MSVC_LIB) @ -nologo -out:$(LIB_NAME) $(OBJECTS)
+ $(RUNNER) $(MSVC_LIB) @ -nologo $(LIBPARMS) -out:$(LIB_NAME) $(OBJECTS)
endef
COMPILE_FLAGS = -DALLEGRO_STATICLINK
@@ -424,7 +424,7 @@
endif
define MAKE_PLUGIN_LIB
- $(RUNNER) $(MSVC_LIB) @ -nologo -out:$(PLUGIN_LIB) $(PLUGIN_OBJS)
+ $(RUNNER) $(MSVC_LIB) @ -nologo $(LIBPARMS) -out:$(PLUGIN_LIB) $(PLUGIN_OBJS)
endef
define LINK_WITH_PLUGINS