Updated to the latest version of pm which installs files with symlinks.
This commit is contained in:
parent
b24e1f5aae
commit
f756747414
|
@ -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 = ""
|
||||
|
|
BIN
util/LLgen/pm
BIN
util/LLgen/pm
Binary file not shown.
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue