Fresco/Fresco-Test/doc/examples Makefile.in,1.1,1.2

Tobias Hunger <[email protected]> Thu, 29 Jan 2004 20:46:55 +0100
Newsgroups gmane.comp.video.fresco.cvs
Message-ID <[email protected]>
Update of /cvs/fresco/Fresco/Fresco-Test/doc/examples
In directory purcel:/tmp/cvs-serv10774/doc/examples

Modified Files:
	Makefile.in 
Log Message:
Add FLAGS to the compiler invocations.


Index: Makefile.in
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Test/doc/examples/Makefile.in,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.in	6 Apr 2003 16:15:54 -0000	1.1
+++ Makefile.in	29 Jan 2004 19:45:09 -0000	1.2
@@ -97,7 +97,7 @@
 
 $(SYN): $(CXX_TESTS)
 	@echo generating $(@F)
-	$(SYNOPSIS) -pC++ -I$(hdir) -I`$(FRESCO_TEST_CONFIG) --include-dir` -o $@ $<
+	$(SYNOPSIS) -pC++ -I$(hdir) -I`$(FRESCO_TEST_CONFIG) --include-dir` -I$(top_builddir)/include -o $@ $<
 
 $(HARNESS): $(SYN)
 	@echo generating test harness for $(@F)
@@ -105,8 +105,8 @@
 
 $(DEP): $(HARNESS)
 	@echo generating dependencies for $(<F)
-	$(SHELL) -ec '$(CXX) $(DEPFLAGS) $(CPPFLAGS) $< | sed "s/$*\\.o[ :]*/$*\\.d $*\\.o : /g" > $@'
+	$(SHELL) -ec '$(CXX) $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) $(CPPFLAGS) -I$(top_builddir)/include $< | sed "s/$*\\.o[ :]*/$*\\.d $*\\.o : /g" > $@'
 
 $(OBJ): $(HARNESS)
 	@echo compiling $(@F)
-	$(CXX) `$(FRESCO_TEST_CONFIG) --cppflags` `$(FRESCO_TEST_CONFIG) --cxxflags` -c $< -o $@
+	$(CXX) `$(FRESCO_TEST_CONFIG) --cppflags` `$(FRESCO_TEST_CONFIG) --cxxflags` $(CXXFLAGS) $(OPTFLAGS) $(SOFLAGS) $(CPPFLAGS) -I$(top_builddir)/include -c $< -o $@