]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - tas256xsw-android/tas2563-ftc.git/blob - makefile
fixed the calibration issue
[tas256xsw-android/tas2563-ftc.git] / makefile
1 CROSS_PATH = /home/ju/ti-processor-sdk-linux-am335x-evm-05.00.00.15/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-
2 fct: tas2563.c  tas2563_chk.c tas2563_ftc.c tas2563.c system.c factorytest.c
3         make -C ./lib
4         $(CROSS_PATH)gcc -shared -fPIC -static -c tas2563.c -lm
5         $(CROSS_PATH)gcc -shared -fPIC -static -c tas2563_chk.c -lm
6         $(CROSS_PATH)gcc -shared -fPIC -static -c tas2563_ftc.c -lm ${CFLAGS}
7         $(CROSS_PATH)gcc -shared -fPIC -static -c system.c -lm
8         $(CROSS_PATH)gcc -shared -fPIC -static -c factorytest.c -lm
9         $(CROSS_PATH)gcc -fPIC -o factorytest factorytest.o system.o tas2563_ftc.o tas2563_chk.o  tas2563.o -L./lib -lftc32 -lm ${CFLAGS}