X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=Makefile.common.in;h=cd240618d49878259e2aeb5c860726ca6c01a3c4;hb=fd76df2157efa9dab74c9597b665c6117c9b468c;hp=21371161de57e046659449969bbba9ab96bff291;hpb=4726c45887ee4dd2fc2a58b94ff5abc2fd4cd6fd;p=fw%2Fsdcc diff --git a/Makefile.common.in b/Makefile.common.in index 21371161..cd240618 100644 --- a/Makefile.common.in +++ b/Makefile.common.in @@ -20,7 +20,7 @@ INSTALL = @INSTALL@ YACC = @YACC@ LEX = @LEX@ AWK = @AWK@ - +STRIP = @STRIP@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ @@ -32,23 +32,26 @@ man1dir = $(mandir)/man1 man2dir = $(mandir)/man2 infodir = @infodir@ srcdir = @srcdir@ +docdir = @datadir@/doc/sdcc + +# Modules to enable/disable +OPT_ENABLE_UCSIM = @OPT_ENABLE_UCSIM@ +OPT_ENABLE_DEVICE_LIB_BUILD = @OPT_ENABLE_DEVICE_LIB_BUILD@ +OPT_ENABLE_PACKIHX = @OPT_ENABLE_PACKIHX@ + +SLIB = $(PRJDIR)/support/Util + +transform = @program_transform_name@ # Flags -HAVE_LIBGC = @HAVE_LIBGC@ -DISABLE_GC = @DISABLE_GC@ + DEFS = $(subs -DHAVE_CONFIG_H,,@DEFS@) -CPPFLAGS = @CPPFLAGS@ -I$(PRJDIR) -ifeq ($(DISABLE_GC),1) -# Skip the Boehm GC library in special, manually configured cases. -else -ifeq ($(HAVE_LIBGC),1) -else -CPPFLAGS += -I$(PRJDIR)/support -endif -endif +CPPFLAGS = $(INCLUDEFLAGS) -I. -I$(PRJDIR) -I$(SLIB) CFLAGS = @CFLAGS@ -Wall M_OR_MM = @M_OR_MM@ +EXTRALIBS = @LIBS@ + # Shared settings between all the sub Makefiles # Done here so that we don't have to start a Make from the top levelport # directory. @@ -56,4 +59,6 @@ M_OR_MM = @M_OR_MM@ # Library compilation options SCC = $(PRJDIR)/src/sdcc SAS = $(PRJDIR)/as/$(PORT)/as -CLEANSPEC = *.lst *.asm *.sym *~ *.cdb +CLEANSPEC = *.lst *.asm *.sym *~ *.cdb *.dep *.rul + +OBJ = $(SOURCES:.c=.o)