|
From: Terry T. <ter...@us...> - 2005-01-03 00:41:44
|
Update of /cvsroot/frontierkernel/Frontier/build_GNU In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14173/Frontier/build_GNU Added Files: Makefile Log Message: Initial checkin of support for building Frontier with GNU tools. --- NEW FILE: Makefile --- # $Id: Makefile,v 1.1 2005/01/03 00:41:32 terry_teague Exp $ # # Makefile - for Frontier # # UserLand Frontier(tm) -- High performance Web content management, # object database, system-level and Internet scripting environment, # including source code editing and debugging. # # Copyright (C) 1992-2004 UserLand Software, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program 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 General Public License for more details. [...1282 lines suppressed...] # # You can optionally "make dep" to make dependencies. # voodoo magic in the form of a perl script turns # Foo.o: Foo.cpp into obj/Foo.cpp.o: Foo.cpp # # I'm not brave enough to try and translate that regex to sed #dep: # $(CCC) -M $(CFLAGS) $(DEPS) | \ # perl -pe 's/^(.*)\.o: ([^\/]*\/)??([^ \/]+\.(\w+))/$(OBJDIR)\/$$2$$1.$$4.o: $$2$$3/;' \ # > .depend #depend: # mkdep ${CFLAGS} ${SRCS} # # Include ".depend" if it exists (run "make dep" to generate it) # #ifeq (.depend,$(wildcard .depend)) #include .depend #endif |