Jamfile #1

  • //
  • guest/
  • perforce_software/
  • p4web/
  • main/
  • src/
  • Main/
  • Jamfile
  • View
  • Commits
  • Open Download .zip Download (698 B)
#
# p4-web Main Jamfile
#

SubDir P4W Main ;

SubDirHdrs $(P4W) Views ;
SubDirHdrs $(P4W) Panes ;
SubDirHdrs $(P4W) util ;

SubDirHdrs $(P4) zeroconf ;

P4ClientHdrs ;

Ident main.cpp p4wRequest.cpp ;

if $(OS) = NT
{
	WinRes p4web.exe : p4web.rc ;
	WinResIdent p4web.rc ;
}

Library $(WEBGIZMOLIB) :
	    p4wProcess.cpp
	    p4wThread.cpp
	    p4wRequest.cpp
	    p4wStrBuf.cpp
	    p4wAllCommands.cpp
	    p4wURL.cpp
	    base64.cpp
	    ;


Main p4web : main.cpp ;
Strip p4web ;

LinkLibraries p4web : $(WEBGIZMOLIB) $(CLIENTLIB) $(RPCLIB) $(SUPPORTLIB) ;

LinkSSL p4web ;

if $(BINDIR) { InstallBin $(BINDIR) : p4web ; }

# jam AC to print mysterious AC numbers

ListAC AC : p4wAllCommands.h ;
# Change User Description Committed
#1 12234 Matt Attaway Rejigger P4Web project in preparation for official sunsetting

The bin directory contains the last official builds of P4Web from the
Perforce download site. P4Web is soon to be completely sunsetted; these
builds are here for folks who don't want to build their own.

To better handle the archived builds the source code has been moved into
a separate src directory.
//guest/perforce_software/p4web/Main/Jamfile
#1 8914 Matt Attaway Initial add of the P4Web source code