[Commits] (morgen) Fixed the path to the DLLs in the Makefile
commits at osafoundation.org
commits at osafoundation.org
Tue May 4 11:59:35 PDT 2004
Commit by: morgen
Modified files:
internal/launchers/win/Makefile 1.4 1.5
Log message:
Fixed the path to the DLLs in the Makefile
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/internal/launchers/win/Makefile.diff?r1=text&tr1=1.4&r2=text&tr2=1.5
Index: internal/launchers/win/Makefile
diff -u internal/launchers/win/Makefile:1.4 internal/launchers/win/Makefile:1.5
--- internal/launchers/win/Makefile:1.4 Tue May 4 11:48:51 2004
+++ internal/launchers/win/Makefile Tue May 4 11:59:05 2004
@@ -1,9 +1,11 @@
include ../../Makefile.inc
+DLLS_DIR=libs
+
ifeq ($(SNAP),debug)
-DLLS=win/msvcp71d.dll win/msvcr71d.dll win/msvcrtd.dll
+DLLS=$(DLLS_DIR)/msvcp71d.dll $(DLLS_DIR)/msvcr71d.dll $(DLLS_DIR)/msvcrtd.dll
else
-DLLS=win/msvcp71.dll win/msvcr71.dll
+DLLS=$(DLLS_DIR)/msvcp71.dll $(DLLS_DIR)/msvcr71.dll
endif
build: chandler.exe
More information about the Commits
mailing list