Use 'ao-dbg' instead of 's51' to communicate with TeleMetrum
[fw/sdcc] / Makefile.common.in
1 #
2 #
3 #
4
5 # Version
6 PACKAGE         = @PACKAGE@
7 VERSION         = @VERSION@
8 VERSIONHI       = @VERSIONHI@
9 VERSIONLO       = @VERSIONLO@
10 VERSIONP        = @VERSIONP@
11
12 # Programs
13 SHELL           = /bin/sh
14 CC              = @CCACHE@ @CC@
15 CPP             = @CCACHE@ @CPP@
16 RANLIB          = @RANLIB@
17 INSTALL         = @INSTALL@
18 YACC            = @YACC@
19 LEX             = @LEX@
20 AWK             = @AWK@
21 STRIP           = @STRIP@
22 prefix          = @prefix@
23 exec_prefix     = @exec_prefix@
24 bindir          = @bindir@
25 libdir          = @libdir@
26 datadir         = @datadir@
27 datarootdir     = @datarootdir@
28 includedir      = @includedir@
29 mandir          = @mandir@
30 man1dir         = $(mandir)/man1
31 man2dir         = $(mandir)/man2
32 infodir         = @infodir@
33 docdir          = @docdir@
34 DESTDIR         =
35
36 include_dir_suffix = @include_dir_suffix@
37 lib_dir_suffix     = @lib_dir_suffix@
38
39 # Modules to enable/disable
40 OPT_DISABLE_AVR   = @OPT_DISABLE_AVR@
41 OPT_DISABLE_DS390 = @OPT_DISABLE_DS390@
42 OPT_DISABLE_DS400 = @OPT_DISABLE_DS400@
43 OPT_DISABLE_HC08  = @OPT_DISABLE_HC08@
44 OPT_DISABLE_MCS51 = @OPT_DISABLE_MCS51@
45 OPT_DISABLE_PIC   = @OPT_DISABLE_PIC@
46 OPT_DISABLE_PIC16 = @OPT_DISABLE_PIC16@
47 OPT_DISABLE_XA51  = @OPT_DISABLE_XA51@
48 OPT_DISABLE_Z80   = @OPT_DISABLE_Z80@
49
50 OPT_DISABLE_UCSIM     = @OPT_DISABLE_UCSIM@
51 OPT_DISABLE_DEVICE_LIB= @OPT_DISABLE_DEVICE_LIB@
52 OPT_DISABLE_PACKIHX   = @OPT_DISABLE_PACKIHX@
53 OPT_ENABLE_DOC        = @OPT_ENABLE_DOC@
54 OPT_DISABLE_SDCPP     = @OPT_DISABLE_SDCPP@
55
56 SLIB                    = $(top_builddir)/support/Util
57
58 EXEEXT          = @EXEEXT@
59 transform       = @program_transform_name@
60
61 # Flags
62
63 DEFS           += $(subs -DHAVE_CONFIG_H,,@DEFS@)
64 CPPFLAGS       += @CPPFLAGS@ $(INCLUDEFLAGS) -I. -I$(top_builddir) -I$(srcdir)/$(SLIB) -I$(srcdir)
65 CFLAGS         += -Wall @CFLAGS@
66 LDFLAGS        += @LDFLAGS@
67 M_OR_MM         = @M_OR_MM@
68
69 EXTRALIBS      += @LIBS@
70
71 # Shared settings between all the sub Makefiles
72 # Done here so that we don't have to start a Make from the top levelport
73 # directory.
74
75 # Library compilation options
76 CLEANSPEC = *.lst *.asm *.sym *~ *.cdb *.dep *.rul
77
78 OBJ = $(SOURCES:.c=.o)