mirror of https://github.com/maderix/ANE.git
10 lines
300 B
Makefile
10 lines
300 B
Makefile
CC = xcrun clang
|
|
CFLAGS = -O2 -DACCELERATE_NEW_LAPACK -framework Foundation -framework IOSurface -framework Accelerate \
|
|
-isysroot $(shell xcrun --show-sdk-path) -fobjc-arc
|
|
|
|
train: train.m config.h io.h cpu_ops.h mil_dynamic.h
|
|
$(CC) $(CFLAGS) -o train train.m
|
|
|
|
clean:
|
|
rm -f train
|