mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
12 lines
No EOL
441 B
Makefile
12 lines
No EOL
441 B
Makefile
# Build textinputsource for multiple architectures
|
|
textinputsource: textinputsource.x86_64 textinputsource.arm64
|
|
lipo -create -output $@ $^
|
|
|
|
textinputsource.x86_64: main.c
|
|
xcrun -sdk macosx $(CC) $^ -framework Carbon -o $@ -target x86_64-apple-macos10.12
|
|
|
|
textinputsource.arm64: main.c
|
|
xcrun -sdk macosx $(CC) $^ -framework Carbon -o $@ -target arm64-apple-macos11
|
|
|
|
clean:
|
|
-rm textinputsource textinputsource.arm64 textinputsource.x86_64
|