mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
rule for uncompressed anims
This commit is contained in:
parent
c5329f3964
commit
ff8953b16e
@ -147,7 +147,7 @@ $[directory] :
|
|||||||
$[TAB]@test -d $[directory] || echo mkdir -p $[directory]
|
$[TAB]@test -d $[directory] || echo mkdir -p $[directory]
|
||||||
$[TAB]@test -d $[directory] || mkdir -p $[directory]
|
$[TAB]@test -d $[directory] || mkdir -p $[directory]
|
||||||
|
|
||||||
// Sometimes we need a target to depend on the directory existing, without
|
// Sometimes we need a target to depend on the directory existing, without
|
||||||
// being fooled by the directory's modification times. We use this
|
// being fooled by the directory's modification times. We use this
|
||||||
// phony timestamp file to achieve that.
|
// phony timestamp file to achieve that.
|
||||||
$[directory]/stamp :
|
$[directory]/stamp :
|
||||||
@ -282,14 +282,20 @@ $[TAB]touch $[pt]
|
|||||||
#define target $[bam_dir]/$[notdir $[egg:%.egg=%.bam]]
|
#define target $[bam_dir]/$[notdir $[egg:%.egg=%.bam]]
|
||||||
$[target] : $[source] $[bam_dir]/stamp
|
$[target] : $[source] $[bam_dir]/stamp
|
||||||
$[TAB]egg2bam -kp -tp $[install_dir] $[EGG2BAM_OPTS] -o $[target] $[source]
|
$[TAB]egg2bam -kp -tp $[install_dir] $[EGG2BAM_OPTS] -o $[target] $[source]
|
||||||
|
|
||||||
#end egg
|
#end egg
|
||||||
|
|
||||||
#foreach egg $[UNPAL_SOURCES]
|
#foreach egg $[UNPAL_SOURCES]
|
||||||
#define source $[source_prefix]$[egg]
|
#define source $[source_prefix]$[egg]
|
||||||
#define target $[bam_dir]/$[notdir $[egg:%.egg=%.bam]]
|
#define target $[bam_dir]/$[notdir $[egg:%.egg=%.bam]]
|
||||||
$[target] : $[source] $[bam_dir]/stamp
|
$[target] : $[source] $[bam_dir]/stamp
|
||||||
$[TAB]egg2bam -kp -tp $[install_dir] $[EGG2BAM_OPTS] -o $[target] $[source]
|
$[TAB]egg2bam -kp -tp $[install_dir] $[EGG2BAM_OPTS] -o $[target] $[source]
|
||||||
|
#end egg
|
||||||
|
|
||||||
|
#foreach egg $[UNPAL_SOURCES_NC]
|
||||||
|
#define source $[source_prefix]$[egg]
|
||||||
|
#define target $[bam_dir]/$[notdir $[egg:%.egg=%.bam]]
|
||||||
|
$[target] : $[source] $[bam_dir]/stamp
|
||||||
|
$[TAB]egg2bam -kp -tp $[install_dir] $[EGG2BAM_OPTS] -NC -o $[target] $[source]
|
||||||
#end egg
|
#end egg
|
||||||
#end install_egg
|
#end install_egg
|
||||||
|
|
||||||
@ -539,7 +545,7 @@ $[TAB]cd ./$[RELDIR] && $(MAKE) install-other
|
|||||||
#end dirname
|
#end dirname
|
||||||
|
|
||||||
#formap dirname subdirs
|
#formap dirname subdirs
|
||||||
install-$[dirname] :
|
install-$[dirname] :
|
||||||
$[TAB]cd ./$[RELDIR] && $(MAKE) install
|
$[TAB]cd ./$[RELDIR] && $(MAKE) install
|
||||||
#end dirname
|
#end dirname
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user