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 58fad2b368
commit 2d5e79ec0a
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 = ""