7 include $(PRJDIR)/Makefile.common
11 PORTS = mcs51 z80 avr ds390
12 PORT_LIBS = $(PORTS:%=%/port.a)
14 ifeq ($(DISABLE_GC),1)
17 LIBS = -lgc -lm @LIBS@
18 ifeq ($(HAVE_LIBGC), 1)
20 LIBDIRS = -L$(PRJDIR)/support/gc
21 LIBGC = $(PRJDIR)/support/gc/libgc.a
27 ifdef SDCC_SUB_VERSION
28 CFLAGS += -DSDCC_SUB_VERSION_STR=\"$(SDCC_SUB_VERSION)\"
31 OBJECTS = SDCCy.o SDCCerr.o SDCChasht.o SDCCmain.o \
32 SDCCsymt.o SDCCopt.o SDCCast.o SDCCmem.o SDCCval.o \
33 SDCCicode.o SDCCbitv.o SDCCset.o SDCClabel.o \
34 SDCCBBlock.o SDCCloop.o SDCCcse.o SDCCcflow.o SDCCdflow.o \
35 SDCClrange.o SDCCptropt.o SDCCpeeph.o SDCCglue.o spawn.o \
39 ifeq ($(USE_ALT_LEX), 1)
46 SOURCES = $(patsubst %.o,%.c,$(OBJECTS))
48 TARGET = $(PRJDIR)/bin/sdcc
50 # Compiling entire program or any subproject
51 # ------------------------------------------
52 all: ports checkconf $(LIBGC) $(TARGET)
55 for i in $(PORTS); do $(MAKE) -C $$i; done
57 $(PRJDIR)/support/gc/libgc.a:
58 cd $(PRJDIR)/support/gc && $(MAKE)
60 # Compiling and installing everything and runing test
61 # ---------------------------------------------------
62 install: all installdirs
63 $(INSTALL) -s $(TARGET) $(bindir)/sdcc
66 # Deleting all the installed files
67 # --------------------------------
70 rm -f $(bindir)/packihx
72 # Performing self-test
73 # --------------------
77 # Performing installation test
78 # ----------------------------
82 # Creating installation directories
83 # ---------------------------------
85 $(INSTALL) -d $(bindir)
88 # Creating dependencies
89 # ---------------------
92 Makefile.dep: $(SOURCES) $(SPECIAL) *.h $(PRJDIR)/*.h
93 $(CPP) $(CPPFLAGS) $(M_OR_MM) $(SOURCES) >Makefile.dep
101 $(TARGET): $(OBJECTS) $(PORT_LIBS)
102 $(CC) -o $@ $(OBJECTS) $(PORT_LIBS) $(LIBDIRS) $(LIBS)
105 $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
107 reswords.h: reswords.gperf Makefile
108 gperf -o -k1,2,4 -t -C -N is_reserved_word $< > $@
110 altlex.o: altlex.c SDCCy.h reswords.h
115 $(YACC) -d -v -o $@ $<
117 SDCClex.c: SDCC.lex SDCCy.h
131 # Remaking configuration
132 # ----------------------
134 @if [ -f $(PRJDIR)/devel ]; then\
135 $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" PRJDIR="$(PRJDIR)" \
139 # End of main_in.mk/main.mk