diff options
| author | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2009-12-17 02:37:07 +0000 | 
|---|---|---|
| committer | iperry <iperry@749a229e-a60e-11de-b98f-4500b42dc123> | 2009-12-17 02:37:07 +0000 | 
| commit | 32e57dac2e61e79b029593eb4d34d727bcc10678 (patch) | |
| tree | 98d7ff41993576bb150d13d5f63dc744f6812852 /src/stm32lib/examples/DAC/DualModeDMA_SineWave/makefile | |
| download | librambutan-32e57dac2e61e79b029593eb4d34d727bcc10678.tar.gz librambutan-32e57dac2e61e79b029593eb4d34d727bcc10678.zip  | |
Initial commit of library code, moved from leaftest repo
git-svn-id: https://leaflabs.googlecode.com/svn/trunk/library@69 749a229e-a60e-11de-b98f-4500b42dc123
Diffstat (limited to 'src/stm32lib/examples/DAC/DualModeDMA_SineWave/makefile')
| -rwxr-xr-x | src/stm32lib/examples/DAC/DualModeDMA_SineWave/makefile | 85 | 
1 files changed, 85 insertions, 0 deletions
diff --git a/src/stm32lib/examples/DAC/DualModeDMA_SineWave/makefile b/src/stm32lib/examples/DAC/DualModeDMA_SineWave/makefile new file mode 100755 index 0000000..ec9fcd6 --- /dev/null +++ b/src/stm32lib/examples/DAC/DualModeDMA_SineWave/makefile @@ -0,0 +1,85 @@ +# setup
 +
 +COMPILE_OPTS = -mcpu=cortex-m3 -mthumb -Wall -g -O0
 +INCLUDE_DIRS = -I . -I lib/inc
 +LIBRARY_DIRS = -L lib
 +
 +CC = arm-none-eabi-gcc
 +CFLAGS = $(COMPILE_OPTS) $(INCLUDE_DIRS)
 +
 +CXX = arm-none-eabi-g++
 +CXXFLAGS = $(COMPILE_OPTS) $(INCLUDE_DIRS)
 +
 +AS = arm-none-eabi-gcc
 +ASFLAGS = $(COMPILE_OPTS) -c
 +
 +LD = arm-none-eabi-gcc
 +LDFLAGS = -Wl,--gc-sections,-Map=$@.map,-cref,-u,Reset_Handler $(INCLUDE_DIRS) $(LIBRARY_DIRS) -T stm32.ld
 +
 +OBJCP = arm-none-eabi-objcopy
 +OBJCPFLAGS = -O binary
 +
 +AR = arm-none-eabi-ar
 +ARFLAGS = cr
 +
 +MAIN_OUT = main
 +MAIN_OUT_ELF = $(MAIN_OUT).elf
 +MAIN_OUT_BIN = $(MAIN_OUT).bin
 +
 +# all
 +
 +all: $(MAIN_OUT_ELF) $(MAIN_OUT_BIN)
 +
 +# main
 +
 +$(MAIN_OUT_ELF): main.o stm32f10x_it.o lib/libstm32.a
 +	$(LD) $(LDFLAGS) main.o stm32f10x_it.o lib/libstm32.a --output $@
 +
 +$(MAIN_OUT_BIN): $(MAIN_OUT_ELF)
 +	$(OBJCP) $(OBJCPFLAGS) $< $@
 +
 +
 +# flash
 +
 +# this is key, copy the .elf file under a new name into the jtag dir
 +# run openocd, and load the chip all in one step.
 +flash: $(MAIN_OUT)
 +	@cp $(MAIN_OUT_ELF) jtag/flash
 +	@cd jtag; openocd -f flash.cfg
 +#	@rm jtag/flash
 +
 +
 +# libstm32.a
 +
 +LIBSTM32_OUT = lib/libstm32.a
 +
 +LIBSTM32_OBJS = \
 + lib/src/stm32f10x_adc.o \
 + lib/src/stm32f10x_bkp.o \
 + lib/src/stm32f10x_can.o \
 + lib/src/stm32f10x_dac.o \
 + lib/src/stm32f10x_dma.o \
 + lib/src/stm32f10x_exti.o \
 + lib/src/stm32f10x_flash.o \
 + lib/src/stm32f10x_gpio.o \
 + lib/src/stm32f10x_i2c.o \
 + lib/src/stm32f10x_iwdg.o \
 + lib/src/stm32f10x_lib.o \
 + lib/src/stm32f10x_nvic.o \
 + lib/src/stm32f10x_pwr.o \
 + lib/src/stm32f10x_rcc.o \
 + lib/src/stm32f10x_rtc.o \
 + lib/src/stm32f10x_spi.o \
 + lib/src/stm32f10x_systick.o \
 + lib/src/stm32f10x_tim.o \
 + lib/src/stm32f10x_usart.o \
 + lib/src/stm32f10x_wwdg.o
 +
 +$(LIBSTM32_OUT): $(LIBSTM32_OBJS)
 +	$(AR) $(ARFLAGS) $@ $(LIBSTM32_OBJS)
 +
 +$(LIBSTM32_OBJS): stm32f10x_conf.h
 +
 +
 +clean:
 +	-rm *.o lib/src/*.o $(LIBSTM32_OUT) $(MAIN_OUT_ELF) $(MAIN_OUT_BIN)
  | 
