* device/include/string.h: added size_t typedef, changed
[fw/sdcc] / device / lib / Makefile.in
1 #
2 #
3 #
4
5 VERSION         = @VERSION@
6 VERSIONHI       = @VERSIONHI@
7 VERSIONLO       = @VERSIONLO@
8 VERSIONP        = @VERSIONP@
9
10 SHELL           = /bin/sh
11 CPP             = @CPP@
12 INSTALL         = @INSTALL@
13 CP              = @CP@
14
15 PRJDIR          = ../..
16 INCDIR          = $(PRJDIR)/device/include
17
18 CC              = $(PRJDIR)/bin/sdcc
19 CPP             = $(PRJDIR)/bin/sdcpp
20
21 prefix          = @prefix@
22 exec_prefix     = @exec_prefix@
23 bindir          = @bindir@
24 libdir          = @libdir@
25 datadir         = @datadir@
26 includedir      = @includedir@
27 mandir          = @mandir@
28 man1dir         = $(mandir)/man1
29 man2dir         = $(mandir)/man2
30 infodir         = @infodir@
31 srcdir          = @srcdir@
32
33 lib_dir_suffix  = @lib_dir_suffix@
34
35 sdcc_libdir     = $(datadir)/$(lib_dir_suffix)
36
37 CPPFLAGS        = -I$(INCDIR)
38 CFLAGS          = $(MODELFLAGS) --nostdinc
39
40 BUILDDIR        = build
41 # Default
42 PORT            = z80
43 PORTDIR         = $(BUILDDIR)/$(PORT)
44
45 SOURCES         = _atof.c _atoi.c _atol.c _autobaud.c _bp.c _schar2fs.c \
46                   _decdptr.c _divsint.c _divslong.c _divuint.c \
47                   _divulong.c _fs2schar.c _fs2sint.c _fs2slong.c \
48                   _fs2uchar.c _fs2uint.c _fs2ulong.c _fsadd.c \
49                   _fsdiv.c _fseq.c _fsgt.c _fslt.c _fsmul.c \
50                   _fsneq.c _fssub.c _gptrget.c _gptrgetc.c _gptrput.c \
51                   _sint2fs.c _iscntrl.c _isdigit.c _isgraph.c \
52                   _islower.c _isprint.c _ispunct.c _isspace.c \
53                   _isupper.c _isxdigit.c _itoa.c _ltoa.c \
54                   _slong2fs.c _memcmp.c \
55                   _memcpy.c _memmove.c _memset.c _modsint.c _modslong.c \
56                   _moduint.c _modulong.c _mulint.c _mullong.c \
57                   _ser.c _setjmp.c \
58                   _spx.c _startup.c _strchr.c _strcmp.c _strcpy.c \
59                   _strcspn.c _strlen.c _strncat.c _strncmp.c \
60                   _strncpy.c _strpbrk.c _strrchr.c _strspn.c \
61                   _strstr.c _strtok.c _uchar2fs.c _uint2fs.c \
62                   _ulong2fs.c malloc.c serial.c ser_ir.c printfl.c \
63                   printf_large.c vprintf.c puts.c gets.c \
64                   assert.c _strcat.c time.c printf_fast.c bpx.c \
65                   fabsf.c frexpf.c ldexpf.c expf.c powf.c sincosf.c sinf.c \
66                   cosf.c logf.c log10f.c sqrtf.c tancotf.c tanf.c cotf.c \
67                   asincosf.c asinf.c acosf.c atanf.c atan2f.c sincoshf.c \
68                   sinhf.c coshf.c tanhf.c floorf.c ceilf.c modff.c
69
70 OBJECTS         = $(patsubst %.c,$(PORTDIR)/%.rel,$(SOURCES))
71
72 Z80SOURCES      = _atof.c _atoi.c \
73                   _iscntrl.c _isdigit.c _isgraph.c \
74                   _islower.c _isprint.c _ispunct.c _isspace.c \
75                   _isupper.c _isxdigit.c _memcmp.c \
76                   _memcpy.c _memmove.c _memset.c \
77                   _startup.c _strchr.c _strcmp.c _strcpy.c \
78                   _strcspn.c _strlen.c _strncat.c _strncmp.c \
79                   _strncpy.c _strpbrk.c _strrchr.c _strspn.c \
80                   _strstr.c _strtok.c \
81                   puts.c gets.c \
82                   assert.c _strcat.c \
83                   _modslong.c _modulong.c \
84                   _mullong.c \
85                   _divslong.c _divulong.c \
86                   malloc.c \
87                   _fs2schar.c _fs2sint.c _fs2slong.c \
88                   _fs2uchar.c _fs2uint.c _fs2ulong.c _fsadd.c \
89                   _fsdiv.c _fseq.c _fsgt.c _fslt.c _fsmul.c \
90                   _fsneq.c _fssub.c \
91                   _uchar2fs.c _uint2fs.c \
92                   _ulong2fs.c \
93                   _slong2fs.c _sint2fs.c _schar2fs.c 
94
95 Z80OBJECTS      = $(Z80SOURCES:%.c=$(PORTDIR)/%.o)
96
97 XA51SOURCES      = _atof.c _atoi.c _atol.c _schar2fs.c \
98                   _divsint.c _divslong.c _divuint.c \
99                   _divulong.c _fs2schar.c _fs2sint.c _fs2slong.c \
100                   _fs2uchar.c _fs2uint.c _fs2ulong.c _fsadd.c \
101                   _fsdiv.c _fseq.c _fsgt.c _fslt.c _fsmul.c \
102                   _fsneq.c _fssub.c \
103                   _sint2fs.c _iscntrl.c _isdigit.c _isgraph.c \
104                   _islower.c _isprint.c _ispunct.c _isspace.c \
105                   _isupper.c _isxdigit.c _slong2fs.c _memcmp.c \
106                   _memcpy.c _memmove.c _memset.c _modsint.c _modslong.c \
107                   _moduint.c _modulong.c _mulint.c _mullong.c \
108                   _strchr.c _strcmp.c _strcpy.c \
109                   _strcspn.c _strlen.c _strncat.c _strncmp.c \
110                   _strncpy.c _strpbrk.c _strrchr.c _strspn.c \
111                   _strstr.c _strtok.c _uchar2fs.c _uint2fs.c \
112                   _ulong2fs.c malloc.c puts.c gets.c \
113                   printf_large.c puts.c gets.c \
114                   assert.c _strcat.c time.c \
115                   fabsf.c frexpf.c ldexpf.c expf.c powf.c sincosf.c sinf.c \
116                   cosf.c logf.c log10f.c sqrtf.c tancotf.c tanf.c cotf.c \
117                   asincosf.c asinf.c acosf.c atanf.c atan2f.c sincoshf.c \
118                   sinhf.c coshf.c tanhf.c floorf.c ceilf.c modff.c
119
120 XA51OBJECTS      = $(XA51SOURCES:%.c=$(PORTDIR)/%.rel)
121
122 OEXT            = .rel
123
124 include incl.mk
125
126 # Compiling entire program or any subproject
127 # ------------------------------------------
128 all: checkconf models model-ds390 model-ds400 model-z80 model-gbz80
129
130 objects: build-dir $(OBJECTS) port-specific-objects lib-files clean_intermediate
131
132 models:
133         if [ "`grep mcs51 ../../ports.build`" = mcs51 ]; then \
134           for model in $(MODELS); do \
135             $(MAKE) MODELFLAGS="--model-$$model" PORT=$$model objects; \
136           done \
137         fi
138
139 model-ds390:
140         if [ "`grep ds390 ../../ports.build`" = ds390 ]; then \
141           $(MAKE) MODELFLAGS="-mds390" PORT=ds390 objects; \
142         fi
143         
144 model-ds400:
145         if [ "`grep ds400 ../../ports.build`" = ds400 ]; then \
146           $(MAKE) MODELFLAGS="-mds400" PORT=ds400 objects; \
147         fi      
148
149 model-xa51:
150         if [ "`grep xa51 ../../ports.build`" = xa51 ]; then \
151           $(MAKE) MODELFLAGS="-mxa51" PORT=xa51 objects-xa51; \
152         fi
153
154 objects-xa51: build-dir $(XA51OBJECTS) port-specific-objects
155         cd $(PORTDIR); ls *$(OEXT) > lib$(PORT).lib
156
157 model-z80:
158         if [ "`grep z80 ../../ports.build`" = z80 ]; then \
159           $(MAKE) MODELFLAGS="-mz80" PORT=z80 objects-z80 OEXT=.o; \
160         fi
161
162 model-gbz80:
163         if [ "`grep z80 ../../ports.build`" = z80 ]; then \
164           $(MAKE) MODELFLAGS="-mgbz80" PORT=gbz80 objects-z80 OEXT=.o; \
165         fi
166
167 objects-z80: build-dir $(Z80OBJECTS) port-specific-objects clean_intermediate
168         cd $(PORTDIR); ls *$(OEXT) > $(PORT).lib
169
170 build-dir: $(PORTDIR)
171
172 $(PORTDIR):
173         mkdir -p $(PORTDIR)
174
175 port-specific-objects:
176         if [ -d $(PORT) ]; then \
177           $(MAKE) -C $(PORT); \
178           cp -f $(PORT)/*.lib $(PORT)/*$(OEXT) $(PORTDIR); \
179         fi
180
181 lib-files:
182         cp *.lib $(PORTDIR)
183
184 clean_intermediate:
185         rm -f $(PORTDIR)/*.lst $(PORTDIR)/*.sym
186
187 # Compiling and installing everything and runing test
188 # ---------------------------------------------------
189 install: all installdirs
190         cp -r $(BUILDDIR)/* $(sdcc_libdir)
191         cp -r ds390 ds400 gbz80 z80 *.c $(sdcc_libdir)/src
192         rm `find $(sdcc_libdir)/src -name '*.rel' -or -name '*.dump*' -or -name '*.sym' -or -name '*.o' -or -name '*.lst' -or -name '*.asm'`
193
194 # Deleting all the installed files
195 # --------------------------------
196 uninstall:
197         rm -rf $(sdcc_libdir)
198
199 # Performing self-test
200 # --------------------
201 check:
202
203
204 # Performing installation test
205 # ----------------------------
206 installcheck:
207
208
209 # Creating installation directories
210 # ---------------------------------
211 installdirs:
212         [ -d $(sdcc_libdir) ] || mkdir -p $(sdcc_libdir)
213         for model in $(MODELS); do \
214          [ -d $(sdcc_libdir)/$$model ] || \
215          mkdir -p $(sdcc_libdir)/$$model; \
216         done
217         [ -d $(sdcc_libdir)/ds390 ] || mkdir -p $(sdcc_libdir)/ds390
218         [ -d $(sdcc_libdir)/ds400 ] || mkdir -p $(sdcc_libdir)/ds400    
219         mkdir -p $(sdcc_libdir)/src
220
221 # Creating dependencies
222 # ---------------------
223 dep: Makefile.dep
224
225 Makefile.dep: $(SOURCES) $(INCDIR)/*.h
226         rm -f Makefile.dep
227         for i in $(SOURCES); do \
228           $(CPP) -std=c99 -M $(CPPFLAGS) $$i >$${i}.dep; \
229           cat $${i}.dep >>Makefile.dep; \
230           rm $${i}.dep; \
231         done
232
233 include Makefile.dep
234 include clean.mk
235
236 # My rules
237 # --------
238
239 .SUFFIXES: .rel .o
240
241 $(PORTDIR)/%$(OEXT): %.c
242         $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
243
244 # Remaking configuration
245 # ----------------------
246 checkconf:
247         @if [ -f $(PRJDIR)/devel ]; then\
248           $(MAKE) -f $(srcdir)/conf.mk srcdir="$(srcdir)" PRJDIR="$(PRJDIR)" \
249           freshconf;\
250         fi
251
252 # End of main_in.mk/main.mk