add a delay for avrdude prog (useful ?)
[beacon-tx-433.git] / Makefile
1 TARGET = main
2
3 # repertoire des modules
4 AVERSIVE_DIR ?=../..# VALUE, absolute or relative path : example ../.. #
5
6 # List C source files here. (C dependencies are automatically generated.)
7 SRC = $(TARGET).c
8
9 # List Assembler source files here.
10 # Make them always end in a capital .S.  Files ending in a lowercase .s
11 # will not be considered source files but generated files (assembler
12 # output from the compiler), and will be deleted upon "make clean"!
13 # Even though the DOS/Win* filesystem matches both .s and .S the same,
14 # it will preserve the spelling of the filenames, and gcc itself does
15 # care about how the name is spelled on its command-line.
16 ASRC = 
17
18 AVRDUDE_DELAY=1000
19
20 ########################################
21
22 -include .aversive_conf
23 include $(AVERSIVE_DIR)/mk/aversive_project.mk