|
| 1 | +FBC := fbc |
| 2 | + |
| 3 | +test = echo "$(1) = `$(FBC) $(1)`" >> results.txt |
| 4 | + |
| 5 | +all: |
| 6 | + rm -f results.txt |
| 7 | + |
| 8 | + # -print x |
| 9 | + $(call test,-print x -target win32) |
| 10 | + $(call test,-print x -target linux) |
| 11 | + $(call test,-print x 1.bas -target win32) |
| 12 | + $(call test,-print x lib1.a -target win32) |
| 13 | + $(call test,-print x 1.o -target win32) |
| 14 | + |
| 15 | + # -print target with FB target ids passed to -target |
| 16 | + $(call test,-print target -target cygwin-x86) |
| 17 | + $(call test,-print target -target cygwin-x86_64) |
| 18 | + $(call test,-print target -target darwin-x86) |
| 19 | + $(call test,-print target -target darwin-x86_64) |
| 20 | + $(call test,-print target -target dos) |
| 21 | + $(call test,-print target -target freebsd-x86) |
| 22 | + $(call test,-print target -target freebsd-x86_64) |
| 23 | + $(call test,-print target -target linux-aarch64) |
| 24 | + $(call test,-print target -target linux-arm) |
| 25 | + $(call test,-print target -target linux-x86) |
| 26 | + $(call test,-print target -target linux-x86_64) |
| 27 | + $(call test,-print target -target netbsd-x86) |
| 28 | + $(call test,-print target -target netbsd-x86_64) |
| 29 | + $(call test,-print target -target openbsd-x86) |
| 30 | + $(call test,-print target -target openbsd-x86_64) |
| 31 | + $(call test,-print target -target win32) |
| 32 | + $(call test,-print target -target win64) |
| 33 | + |
| 34 | + # -print target gcc triplets passed to -target |
| 35 | + $(call test,-print target -target i686-w64-mingw32) |
| 36 | + $(call test,-print target -target i386-pc-mingw32) |
| 37 | + $(call test,-print target -target i486-pc-mingw32) |
| 38 | + $(call test,-print target -target i586-pc-mingw32) |
| 39 | + $(call test,-print target -target i686-pc-mingw32) |
| 40 | + $(call test,-print target -target x86_64-w64-mingw32) |
| 41 | + $(call test,-print target -target i386-pc-linux-gnu) |
| 42 | + $(call test,-print target -target arm-linux-gnueabihf) |
0 commit comments