New CVS organisation with new naming convention

This commit is contained in:
ocoursiere
2003-07-21 18:51:37 +00:00
parent eb7fc19587
commit b7ccccf962
127 changed files with 44154 additions and 0 deletions

36
bepascal/Jamrules Normal file
View File

@@ -0,0 +1,36 @@
rule UserObject
{
switch $(2)
{
case *.pp : fpc $(1) : $(2) ;
}
}
rule fpc
{
echo $(1) ;
echo $(2) ;
Depends $(1) : $(2) ;
PPUFILES += $(2)u ;
Clean clean : $(2)u ;
echo $(2)u ;
echo $(LOCATE_TARGET) ;
echo $(PPUFILES) ;
}
actions fpc
{
fpc -g -S2 $(2)
}
rule MakeZip
{
Depends all : $(1) ;
Clean clean : $(DISTRIB_DIR)/$(1) ;
}
actions MakeZip
{
mkdir $(DISTRIB_DIR)
zip $(DISTRIB_DIR)/$(1) -r $(2)
}