Properly install packihx utility
[fw/sdcc] / src / Makefile.in
1 #
2 #
3 #
4
5 PRJDIR          = ..
6
7 include $(PRJDIR)/Makefile.common
8
9 USE_ALT_LEX     = 0
10
11 PORTS           = mcs51 z80 avr ds390
12 PORT_LIBS       = $(PORTS:%=%/port.a)
13
14 LIBS            = -lgc -lm @LIBS@
15 ifeq ($(HAVE_LIBGC), 1)
16 else
17 LIBDIRS         = -L$(PRJDIR)/support/gc
18 LIBGC           = $(PRJDIR)/support/gc/libgc.a
19 endif
20
21 ifdef SDCC_SUB_VERSION
22 CFLAGS          += -DSDCC_SUB_VERSION_STR=\"$(SDCC_SUB_VERSION)\"
23 endif
24
25 OBJECTS         = SDCCy.o SDCCerr.o SDCChasht.o SDCCmain.o \
26                   SDCCsymt.o SDCCopt.o SDCCast.o SDCCmem.o SDCCval.o \
27                   SDCCicode.o SDCCbitv.o SDCCset.o SDCClabel.o \
28                   SDCCBBlock.o SDCCloop.o SDCCcse.o SDCCcflow.o SDCCdflow.o \
29                   SDCClrange.o SDCCptropt.o SDCCpeeph.o SDCCglue.o spawn.o \
30                   asm.o
31
32 SPECIAL         = SDCCy.h 
33 ifeq ($(USE_ALT_LEX), 1)
34 OBJECTS         += altlex.o
35 SPECIAL         += reswords.h
36 else
37 OBJECTS         += SDCClex.o
38 endif
39
40 SOURCES         = $(patsubst %.o,%.c,$(OBJECTS))
41
42 TARGET          = $(PRJDIR)/bin/sdcc
43 PACKIHX         = $(PRJDIR)/bin/packihx
44
45 # Compiling entire program or any subproject
46 # ------------------------------------------
47 all: ports checkconf $(LIBGC) $(TARGET) $(PACKIHX)
48
49 ports:
50         for i in $(PORTS); do $(MAKE) -C $$i; done
51
52 $(PRJDIR)/support/gc/libgc.a:
53         cd $(PRJDIR)/support/gc && $(MAKE)
54
55 # Compiling and installing everything and runing test
56 # ---------------------------------------------------
57 install: all installdirs
58         $(INSTALL) -s $(TARGET) $(bindir)/sdcc
59         $(INSTALL) $(PACKIHX) $(bindir)/packihx
60
61
62 # Deleting all the installed files
63 # --------------------------------
64 uninstall:
65         rm -f $(bindir)/sdcc
66
67
68 # Performing self-test
69 # --------------------
70 check:
71
72
73 # Performing installation test
74 # ----------------------------
75 installcheck:
76
77
78 # Creating installation directories
79 # ---------------------------------
80 installdirs:
81         $(INSTALL) -d $(bindir)
82
83
84 # Creating dependencies
85 # ---------------------
86 dep: Makefile.dep
87
88 Makefile.dep: $(SOURCES) $(SPECIAL) *.h $(PRJDIR)/*.h
89         $(CPP) $(CPPFLAGS) $(M_OR_MM) $(SOURCES) >Makefile.dep
90
91 include Makefile.dep
92 include clean.mk
93
94
95 # My rules
96 # --------
97 $(TARGET): $(OBJECTS) $(PORT_LIBS)
98         $(CC) -o $@ $(OBJECTS) $(PORT_LIBS) $(LIBDIRS) $(LIBS)
99
100 $(PACKIHX): packihx
101           $(INSTALL) packihx $(PACKIHX)
102         
103
104 .c.o:
105         $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
106
107 reswords.h: reswords.gperf Makefile
108         gperf -o -k1,2,4 -t -C -N is_reserved_word $< > $@
109
110 altlex.o: altlex.c SDCCy.h reswords.h
111
112 SDCCy.h: SDCCy.c
113
114 SDCCy.c: SDCC.y
115         $(YACC) -d -v -o $@ $<
116
117 SDCClex.c: SDCC.lex SDCCy.h
118         $(LEX) -t $< >$@
119
120 .y.c:
121         rm -f $*.cc $*.h
122         $(YACC) -d $<
123         mv y.tab.c $*.cc
124         mv y.tab.h $*.h
125
126 .l.c:
127         rm -f $*.cc
128         $(LEX) -t $< >$*.cc
129
130
131 # Remaking configuration
132 # ----------------------
133 checkconf:
134         @if [ -f $(PRJDIR)/devel ]; then\
135           $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" PRJDIR="$(PRJDIR)" \
136           freshconf;\
137         fi
138
139 # End of main_in.mk/main.mk
140