Update of /cvsroot/aaf/AAF/examples/com-api/ExportJPEG
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv20530/examples/com-api/ExportJPEG
Modified Files:
GNUmakefile
Log Message:
Refactor all makefiles to enable make driven MSVC++ build.
- All "make check" tests can now be run under MS Windows
- $(LINK_AAF_APP) is now used in makefiles to link all AAF client
applications (tests & examples), simplifying makefiles
- The Debug-static conditionals have been cleaned out of makefiles and
replaced by a single conditional in build/common.mk
- $(APP_RUN_ENV) replaces the previous setting of LD_LIBRARY_PATH in
makefiles for setting up the environment to run tests
Index: GNUmakefile
===================================================================
RCS file: /cvsroot/aaf/AAF/examples/com-api/ExportJPEG/GNUmakefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** GNUmakefile 11 Mar 2006 14:36:10 -0000 1.2
--- GNUmakefile 15 May 2007 17:47:18 -0000 1.3
***************
*** 28,32 ****
include ../comexamplerules.mk
! TEST_CMD = env LD_LIBRARY_PATH=$(AAFSDKBINDIR):$(LD_LIBRARY_PATH) $(AAFSDKBINDIR)/ExportJPEG$(EXE)
.PHONY : check
check : $(AAFSDKBINDIR)/ExportJPEG$(EXE)
--- 28,32 ----
include ../comexamplerules.mk
! TEST_CMD = $(APP_RUN_ENV) $(AAFSDKBINDIR)/ExportJPEG$(EXE)
.PHONY : check
check : $(AAFSDKBINDIR)/ExportJPEG$(EXE)
|