FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/serial/Makefile @ 852:fc713944bd1c
gsm-fw: uartfax.c included in the build with feature at-modem
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 26 Apr 2015 03:06:32 +0000 |
parents | afceeeb2cba1 |
children |
comparison
equal
deleted
inserted
replaced
851:9e54d153eb8c | 852:fc713944bd1c |
---|---|
1 CC= arm-elf-gcc | 1 CC= arm-elf-gcc |
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb | 2 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb |
3 LD= arm-elf-ld | 3 LD= arm-elf-ld |
4 | 4 |
5 sinclude ../include/config.mk | |
6 | |
5 OBJS= debug.o init.o serialswitch.o uart.o | 7 OBJS= debug.o init.o serialswitch.o uart.o |
8 ifeq (${CONFIG_FDMODEM},1) | |
9 OBJS+= uartfax.o | |
10 endif | |
6 | 11 |
7 HDRS= faxdata.h serialswitch.h traceswitch.h uart.h uartfax.h | 12 HDRS= faxdata.h serialswitch.h traceswitch.h uart.h uartfax.h |
8 | 13 |
9 all: xipcode.o | 14 all: xipcode.o |
10 | 15 |