Fresco/Babylon/test Makefile.in,NONE,1.1
Tobias Hunger <[email protected]>
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Babylon/test In directory purcel:/tmp/cvs-serv16426 Added Files: Makefile.in Log Message: Forgot to add yet another file:-( --- NEW FILE: Makefile.in --- # $Id: Makefile.in,v 1.1 2003/04/03 22:43:43 tobias Exp $ # # This source file is a part of the Fresco Project. # Copyright (C) 2003 Stefan Seefeld <[email protected]> # http://www.fresco.org # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either # version 2 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this library; if not, write to the # Free Software Foundation, Inc., 675 Mass Ave, Cambridge, # MA 02139, USA. SHELL := /bin/sh top_srcdir := @top_srcdir@ top_builddir := @top_builddir@ srcdir := @srcdir@ cdir := $(top_builddir)/config hdir := $(top_srcdir)/include include $(cdir)/local.mk CXXFLAGS += $(SO_CXXFLAGS) LDFLAGS += $(SO_LDFLAGS) TESTS := HDR := SYN := $(patsubst %.cc, %.syn, $(TESTS)) HARNESS := $(patsubst %.syn, %-harness.cxx, $(SYN)) DEP := $(patsubst %.cxx, %.d, $(HARNESS)) OBJ := $(patsubst %.cxx, %.o, $(HARNESS)) TARGETS := $(patsubst %.cc, %, $(TESTS)) MANUAL := $(docdir)/html vpath %.hh $(hdir) vpath %.cc $(srcdir) .FORCE: .PHONY: all doc install install-doc clean distclean maintainer-clean dist all: $(TARGETS) @echo Done building tests. $(TARGETS): $(OBJ) @echo linking $(@F) $(CXX) `$(CONFIG) --libs` -o $@ $< depend: $(DEP) doc: # not yet install: # not yet install-doc: # not yet uninstall: #not yet clean: rm -f $(TARGETS) rm -f $(OBJ) $(DEP) $(SYN) $(HARNESS) distclean: clean maintainer-clean: distclean $(SYN): $(TESTS) @echo generating $(@F) $(SYNOPSIS) -pC++ -I$(hdir) -o $@ $< $(HARNESS): $(SYN) @echo generating test harness for $(@F) $(SYN2CC) $< $@ $(DEP): $(HARNESS) @echo generating dependencies for $(<F) $(SHELL) -ec '$(CXX) $(DEPFLAGS) $(CPPFLAGS) $< | sed "s/$*\\.o[ :]*/$*\\.d $*\\.o : /g" > $@' $(OBJ): $(HARNESS) @echo compiling $(@F) $(CXX) `$(CONFIG) --cppflags` `$(CONFIG) --cxxflags` -c $< -o $@