m68k: simplify a Jamfile.

I'm copypasting a lot from this, so I may as well clean it up while I'm
at it.

Change-Id: I9288c087abbf95475f980b5539f2fd19fad7f775
Reviewed-on: https://review.haiku-os.org/c/1136
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
PulkoMandy
2019-03-03 20:56:20 +00:00
committed by waddlesplash
parent d7b8d76a78
commit 5f49c55851
+2 -7
View File
@@ -1,9 +1,6 @@
SubDir HAIKU_TOP src system libroot posix arch m68k ; SubDir HAIKU_TOP src system libroot posix arch m68k ;
local architectureObject ; local architecture = $(TARGET_ARCH) ;
for architectureObject in [ MultiArchSubDirSetup m68k ] {
on $(architectureObject) {
local architecture = $(TARGET_PACKAGING_ARCH) ;
UsePrivateSystemHeaders ; UsePrivateSystemHeaders ;
@@ -12,7 +9,7 @@ for architectureObject in [ MultiArchSubDirSetup m68k ] {
longjmp_return.c longjmp_return.c
; ;
MergeObject <$(architecture)>posix_arch_$(TARGET_ARCH).o : MergeObject <$(TARGET_ARCH)>posix_arch_$(TARGET_ARCH).o :
sigsetjmp.S sigsetjmp.S
siglongjmp.S siglongjmp.S
@@ -21,5 +18,3 @@ for architectureObject in [ MultiArchSubDirSetup m68k ] {
SEARCH on [ FGristFiles $(genericSources) ] SEARCH on [ FGristFiles $(genericSources) ]
= [ FDirName $(SUBDIR) $(DOTDOT) generic ] ; = [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;
}
}