Little fixes to enable compiling "out of the box"

This commit is contained in:
ocoursiere
2004-07-24 22:07:05 +00:00
parent 4402454940
commit 94ad4d6d05
2 changed files with 4 additions and 4 deletions

View File

@@ -44,7 +44,8 @@ SEARCH on docs.zip = . ;
rule MakeDistribs rule MakeDistribs
{ {
MkDir -p $(DISTRIB_DIR) ; MkDir $(DISTRIB_DIR) ;
# copy libbepascal.so in lib # copy libbepascal.so in lib
Bulk lib : libbepascal.so libstubgen.so ; Bulk lib : libbepascal.so libstubgen.so ;
# binary files like libbepascal.so are needed to build bin_bepascal.zip # binary files like libbepascal.so are needed to build bin_bepascal.zip

View File

@@ -37,7 +37,7 @@ rule fpcMkObjectDirs
{ {
dir = [ FDirName $(LOCATE_TARGET) $(i:D) ] ; dir = [ FDirName $(LOCATE_TARGET) $(i:D) ] ;
Depends $(i:S=$(SUFOBJ)) : $(dir) ; Depends $(i:S=$(SUFOBJ)) : $(dir) ;
MkDir -p $(dir) ; MkDir $(dir) ;
} }
} }
@@ -152,7 +152,7 @@ rule MkObjectDirs
{ {
dir = [ FDirName $(LOCATE_TARGET) $(i:D) ] ; dir = [ FDirName $(LOCATE_TARGET) $(i:D) ] ;
Depends $(i:S=$(SUFOBJ)) : $(dir) ; Depends $(i:S=$(SUFOBJ)) : $(dir) ;
MkDir -p $(dir) ; MkDir $(dir) ;
} }
} }
@@ -226,7 +226,6 @@ rule BeMain
local SRCS on $(<) = $(2) ; local SRCS on $(<) = $(2) ;
local TYPE on $(<) = $(3) ; local TYPE on $(<) = $(3) ;
##------------------------------------------------------------------- ##-------------------------------------------------------------------
## Now all the needed variables are defined ## Now all the needed variables are defined
##------------------------------------------------------------------- ##-------------------------------------------------------------------