File: ext.cfg

package info (click to toggle)
simulavr 1.0.0%2Bgit20160221.e53413b-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,740 kB
  • sloc: cpp: 35,491; python: 6,995; ansic: 3,567; makefile: 1,075; sh: 653; asm: 414; tcl: 320; javascript: 32
file content (39 lines) | stat: -rw-r--r-- 872 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# configuration for timertests

[_rule_]
rule = # rule for %(name)s on %(processor)s:
 %(name)s_%(processor)s_CCOPTS = -g -O2 %(ccopts)s -mmcu=%(processor)s
 %(name)s_%(processor)s.elf: %(sources)s
 %(tab)s$(compile-and-link)

[ext_int0]
name = ext_int0
sources = ext_int0.c
processors = atmega128 atmega48 atmega16 attiny2313 at90s4433 at90s8515
simtime = 0
target = %(name)s_%(processor)s.elf

[ext_int1]
name = ext_int1
sources = ext_int0.c
ccopts = -DTEST_INT1=1
processors = atmega128 atmega48 atmega16 attiny2313 at90s4433 at90s8515
simtime = 0
target = %(name)s_%(processor)s.elf

[ext_int2]
name = ext_int2
sources = ext_int0.c
ccopts = -DTEST_INT2_16=1
processors = atmega16
simtime = 0
target = %(name)s_%(processor)s.elf

[ext_pcint]
name = ext_pcint
sources = ext_pcint.c
processors = attiny2313 atmega48
simtime = 0
target = %(name)s_%(processor)s.elf

# EOF