Updated to the latest version of pm which installs files with symlinks.

This commit is contained in:
dtrg 2006-07-25 23:22:58 +00:00
parent b24e1f5aae
commit f756747414
3 changed files with 7 additions and 4 deletions

View file

@ -15,9 +15,9 @@ CCOMPILER = "gcc"
CC = "%CCOMPILER% %CBUILDFLAGS% %CDYNINCLUDES% %CINCLUDES% %CDEFINES% %CEXTRAFLAGS% -c -o %out% %in%"
CPROGRAM = "%CCOMPILER% %CBUILDFLAGS% %CLINKFLAGS% %CEXTRAFLAGS% -o %out% %in% %CLIBRARIES%"
CDEPENDS = "%CCOMPILER% %CBUILDFLAGS% %CDYNINCLUDES% %CINCLUDES% %CDEFINES% %CEXTRAFLAGS% -MM -MG %in% > %out%"
AR = "%RM% %out% && ar cr %out% %in%"
AR = "%RM% %out% && ar cr %out% %in% && ranlib %out%"
CBUILDFLAGS = "-g -Os"
CBUILDFLAGS = "-g -O"
CINCLUDES = {}
CDEFINES = {}
CEXTRAFLAGS = ""

Binary file not shown.

View file

@ -107,13 +107,16 @@ install = group {
install = {
"mkdir -p %PREFIX%",
"(cd bin && tar cf - .) | (cd %PREFIX% && tar xvf -)"
"(cd bin && tar chvf - .) | (cd %PREFIX% && tar xUf -)"
}
}
-- Revision history
-- $Log$
-- Revision 1.3 2006-07-23 20:33:26 dtrg
-- Revision 1.4 2006-07-25 23:22:58 dtrg
-- Updated to the latest version of pm which installs files with symlinks.
--
-- Revision 1.3 2006/07/23 20:33:26 dtrg
-- Added a workaround for an OSX compiler bug.
--
-- Revision 1.2 2006/07/21 11:15:14 dtrg