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