~ubuntu-branches/ubuntu/maverick/avr-libc/maverick

« back to all changes in this revision

Viewing changes to avr/lib/avr51/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2009-10-31 11:52:10 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20091031115210-crjd42sn6ezrj52c
* New upstream relese (closes: #544030)
* Added lintian overrides (closes: #553265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
## much faster if you then re-run the bootstrap script.)
38
38
##
39
39
 
40
 
SUBDIRS = atmega128 atmega1280 atmega1281 atmega1284p at90can128 at90usb1286 at90usb1287
 
40
SUBDIRS = atmega128 atmega1280 atmega1281 atmega1284p atmega128rfa1 at90can128 at90usb1286 at90usb1287
41
41
 
42
42
AVR_TARGET          = avr51
43
43
AVR_TARGET_CRT      = crtusb1287.o
44
44
AVR_TARGET_DEFS     = -D__COMPILING_AVR_LIBC__
45
 
AVR_TARGET_CFLAGS   = -mcall-prologues -Os
 
45
AVR_TARGET_CFLAGS   = -Os $(FNO_JUMP_TABLES)
46
46
AVR_TARGET_ASFLAGS  = 
47
47
AVR_INSTALL_DIR     = avr51
48
48
 
50
50
 
51
51
if HAS_avr51
52
52
 
 
53
AVRLIB_DEVLIST =
 
54
if HAS_atmega128
 
55
  AVRLIB_DEVLIST += atmega128
 
56
endif   # atmega128
 
57
if HAS_atmega1280
 
58
  AVRLIB_DEVLIST += atmega1280
 
59
endif   # atmega1280
 
60
if HAS_atmega1281
 
61
  AVRLIB_DEVLIST += atmega1281
 
62
endif   # atmega1281
 
63
if HAS_atmega1284p
 
64
  AVRLIB_DEVLIST += atmega1284p
 
65
endif   # atmega1284p
 
66
if HAS_atmega128rfa1
 
67
  AVRLIB_DEVLIST += atmega128rfa1
 
68
endif   # atmega128rfa1
 
69
if HAS_at90can128
 
70
  AVRLIB_DEVLIST += at90can128
 
71
endif   # at90can128
 
72
if HAS_at90usb1286
 
73
  AVRLIB_DEVLIST += at90usb1286
 
74
endif   # at90usb1286
 
75
if HAS_at90usb1287
 
76
  AVRLIB_DEVLIST += at90usb1287
 
77
endif   # at90usb1287
 
78
 
53
79
# NOTE: Automake will be performing the following include, not GNU Make.
54
80
# Automake will also be scanning the included file.
55
81