You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2005/11/26 01:41:29 UTC

svn commit: r349050 - /incubator/stdcxx/trunk/etc/config/makefile.rules

Author: sebor
Date: Fri Nov 25 16:41:26 2005
New Revision: 349050

URL: http://svn.apache.org/viewcvs?rev=349050&view=rev
Log:
2005-11-25  Martin Sebor  <se...@roguewave.com>

	* makefile.rules: Disabled the %: %.h pattern rule and added
	the .h suffix to the list of .SUFFIXES.

Modified:
    incubator/stdcxx/trunk/etc/config/makefile.rules

Modified: incubator/stdcxx/trunk/etc/config/makefile.rules
URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/etc/config/makefile.rules?rev=349050&r1=349049&r2=349050&view=diff
==============================================================================
--- incubator/stdcxx/trunk/etc/config/makefile.rules (original)
+++ incubator/stdcxx/trunk/etc/config/makefile.rules Fri Nov 25 16:41:26 2005
@@ -215,6 +215,8 @@
 
 %.o: %.cc
 
+%: %.h
+
 # force the regeneration of all dependencies by removing them
 dependclean:
 	rm -f $(DEPENDDIR)/*.d; 
@@ -235,5 +237,5 @@
        run run_all runall
 
 # override the default set of suffixes with our own
-.SUFFIXES: .a .c .cc .cpp .d .o .$(AS_EXT)
+.SUFFIXES: .a .c .cc .cpp .d .h .o .$(AS_EXT)