mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -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] || 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
|
||||
// phony timestamp file to achieve that.
|
||||
$[directory]/stamp :
|
||||
@ -282,14 +282,20 @@ $[TAB]touch $[pt]
|
||||
#define target $[bam_dir]/$[notdir $[egg:%.egg=%.bam]]
|
||||
$[target] : $[source] $[bam_dir]/stamp
|
||||
$[TAB]egg2bam -kp -tp $[install_dir] $[EGG2BAM_OPTS] -o $[target] $[source]
|
||||
|
||||
#end egg
|
||||
|
||||
#foreach egg $[UNPAL_SOURCES]
|
||||
#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] -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 install_egg
|
||||
|
||||
@ -539,7 +545,7 @@ $[TAB]cd ./$[RELDIR] && $(MAKE) install-other
|
||||
#end dirname
|
||||
|
||||
#formap dirname subdirs
|
||||
install-$[dirname] :
|
||||
install-$[dirname] :
|
||||
$[TAB]cd ./$[RELDIR] && $(MAKE) install
|
||||
#end dirname
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user