You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
326 B
16 lines
326 B
Description := Example configuration for build two libraries for separate \
|
|
architectures.
|
|
|
|
Configs := m32 m64
|
|
Arch := i386
|
|
Arch.m64 := x86_64
|
|
|
|
CC := clang
|
|
|
|
CFLAGS := -Wall -Werror
|
|
CFLAGS.m32 := $(CFLAGS) -m32 -O3
|
|
CFLAGS.m64 := $(CFLAGS) -m64 -O3
|
|
|
|
FUNCTIONS := moddi3 floatundixf udivdi3
|
|
FUNCTIONS.m64 := $(FUNCTIONS) lshrdi3
|