|
From: Tim B. <tbi...@us...> - 2006-06-09 22:40:09
|
Update of /cvsroot/aaf/AAF/test/com/ResultToTextTest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30696/ResultToTextTest Added Files: GNUmakefile Log Message: GNUmakefile for ResultToTextTest. --- NEW FILE: GNUmakefile --- ############################################################################### # # $Id: GNUmakefile,v 1.1 2006/06/09 22:40:03 tbingham Exp $ $Name: $ # # The contents of this file are subject to the AAF SDK Public # Source License Agreement (the "License"); You may not use this file # except in compliance with the License. The License is available in # AAFSDKPSL.TXT, or you may obtain a copy of the License from the AAF # Association or its successor. # # Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See # the License for the specific language governing rights and limitations # under the License. # # The Original Code of this file is Copyright 1998-2006, Licensor of the # AAF Association. # # The Initial Developer of the Original Code of this file and the # Licensor of the AAF Association is Avid Technology. # All rights reserved. # ############################################################################### PACKAGE = Test AAFBASE ?= ../../.. # Common definitions include $(AAFBASE)/build/common.mk # Include directories INCLUDES = -I$(AAFSDKINCLUDEDIR) .PHONY : all all : $(OBJDIR) $(AAFSDKBINDIR)/ResultToTextTest$(EXE) ifeq ($(AAFTARGET),Debug-static) $(AAFSDKBINDIR)/ResultToTextTest$(EXE) : $(CXXOBJS) $(LD) $(CXXOBJS) $(STATIC_LINK_LINE) -o $@ else $(AAFSDKBINDIR)/ResultToTextTest$(EXE) : $(CXXOBJS) $(LD) $(CXXOBJS) -L$(AAFSDKLIBDIR) -laaflib -laafiid $(PLATFORMLIBS) -o $@ endif .PHONY : check check : $(AAFSDKBINDIR)/ResultToTextTest$(EXE) env LD_LIBRARY_PATH=$(AAFSDKBINDIR):$(LD_LIBRARY_PATH) $(AAFSDKBINDIR)/ResultToTextTest$(EXE) .PHONY : clean clean : @$(RM) $(CXXOBJS) @$(RM) $(DEPS) @$(RM) $(AAFSDKBINDIR)/ResultToTextTest$(EXE) @$(RMDIR) $(OBJDIR)/ii_files .PHONY : realclean realclean : clean include $(AAFBASE)/build/rules.mk |