mkjambase now can process '. file' includes; default monolithic Jambase separated...
[k8jam.git] / defaults / Jambase.build.as
blob651a5833c9d612f0b07fcb95bb77444adfd32257
1 # /As object : source ;
3 # Assemble the file _source_, called by the @Object rule.
5 # Do not call this rule directly, since _object_ and _source_ may have
6 # have platform-specific file extensions
8 rule As {
9 Depends $(<) : $(>) ;
10 ASFLAGS on $(<) += $(ASFLAGS) $(SUBDIRASFLAGS) ;
11 ASHDRS on $(<) = [ FIncludes $(SEARCH_SOURCE) $(SUBDIRHDRS) $(HDRS) ] ;
15 actions As {
16 $(AS) $(ASFLAGS) $(ASHDRS) -o $(<) $(>)