Added hack to Makefile to work around differences in windoze mkdir. Need to convert...
[freeems-vanilla.git] / src / Makefile
blob48418100ad8457193d1801adbea30b67ea8e2f2e
1 # FreeEMS - the open source engine management system
3 # Copyright 2008, 2009 Fred Cooke
5 # This Makefile is part of the FreeEMS project.
7 # FreeEMS software is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # FreeEMS software is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with any FreeEMS software. If not, see http://www.gnu.org/licenses/
20 # We ask that if you make any changes to this file you email them upstream to
21 # us at admin(at)diyefi(dot)org or, even better, fork the code on github.com!
23 # Thank you for choosing FreeEMS to run your engine!
26 ################################################################################
27 # #
28 # This Makefile is designed to be run with GNU make! Accept no substitute! #
29 # #
30 ################################################################################
31 # #
32 # Top level targets: #
33 # #
34 # make: #
35 # Builds all output files in the slow multi stage way with all debugging #
36 # make fast: #
37 # Compiles from C straight to objects, links to elfs and copies to s19s #
38 # make clean: #
39 # Permanently removes all build artifact files and directories #
40 # make release: #
41 # Cleans the project, builds it from scratch, copies the s19 files up to #
42 # the firmware directory, zips each s19 separately, zips all of the #
43 # documentation, cleans the project again and lastly zips the entire #
44 # project directory #
45 # #
46 ################################################################################
47 # #
48 # When doing a full build the following steps are taken: #
49 # #
50 # 1) Pre-process all of the C files #
51 # 2) Compile all preprocessed C files into assembly files #
52 # 3) Assemble all assembly files into object files #
53 # 4) Dump the contents of all object files #
54 # 5) Link one decoder with garbage collection and reporting turned on #
55 # 6) Link each decoder without garbage collection #
56 # 7) Dump the contents of each decoders elf #
57 # 8) Produce a memory map for each elf #
58 # 9) Produce a readelf dump for each elf #
59 # 10) Produce an s19 loadable firmware file for each elf #
60 # #
61 ################################################################################
66 ################################################################################
67 # All Fixed Variables #
68 ################################################################################
71 # Constants
72 VERSION = 0.0.19
73 OUTPREFIX = freeems
75 # Directories here
76 RELEASEDIR = ../firmware
77 INCDIR = inc
78 BUGDIR = debug
79 OUTDIR = output
80 OBJDIR = objects
81 ASMDIR = assembly
82 S19DIR = firmware
83 PPCDIR = preprocessedc
85 # Set the windows/non debian path first and then overwrite
86 # with the debian one so we can grep the deb line out and
87 # end up with a working windows make file in an automated
88 # way. Additionally, please ensure you do not add any sets
89 # of three . . . in a row or the line will be missing from
90 # the windows version. Likewise sets of ### longer than 6
91 # or so are also at risk :-)
92 PREFIX = m6811-elf-
93 PREFIX = m68hc11-
94 PATHSEP = \\
95 PATHSEP = /#...
97 # All of the tools
98 CP = cp
99 RM = rm -rf
100 MKDIR = mkdir
101 MKDIR = mkdir -p #...
102 ZIP = zip
103 GCC = $(PREFIX)gcc
104 COPY = $(PREFIX)objcopy
105 DUMP = $(PREFIX)objdump
106 NM = $(PREFIX)nm
107 RE = $(PREFIX)readelf
108 SIZE = $(PREFIX)size
113 ################################################################################
114 # All Source Files #
115 ################################################################################
118 # Indirect dependencies - any header change means a full recompile. This can be improved upon and made more specific.
119 MAINH = main.h
120 INITH = init.h
121 UTILH = utils.h
122 MFILE = Makefile
123 ISRH = interrupts.h
124 CINCS = injectorISR.c
125 FLASHH = flashWrite.h
126 ASMH = 9S12XDP512asm.s
127 LOOKUPH = tableLookup.h
128 WMFILE = Makefile.windows
129 ISRSH = commsISRs.h injectionISRs.h
130 COMMSH = commsCore.h blockDetailsLookup.h
131 LINKER = memory.x regions.x hc9s12xdp512elfb.x
132 GLOBALH1 = freeEMS.h 9S12XDP512.h memory.h globalConstants.h structs.h
133 GLOBALH2 = globalDefines.h errorDefines.h TunableConfigs.h FixedConfigs.h
134 FUELH = fuelAndIgnitionCalcs.h derivedVarsGenerator.h coreVarsGenerator.h
135 RPMH = NipponDenso.h LT1-360-8.h Subaru-36-2-2-2.h MissingTeeth.h MiataNB.h
137 # Let's keep this to a bare minimum! If you write ASM code
138 # please provide an matching alternate C implementation too.
139 HANDASMS = flashBurn.s
140 #RPMHANDASMS =
142 # .c files from inc/ should be included here as deps for the parts they are relied on by!!
143 ALLHEADERS = $(GLOBALH1) $(GLOBALH2) $(COMMSH) $(ISRSH) $(UTILH) $(FUELH) $(MAINH) $(INITH) $(ISRH) $(FLASHH) $(LOOKUPH) $(RPMH)
144 ALLH = $(patsubst %.h,$(INCDIR)/%.h,$(ALLHEADERS)) $(LINKER) $(MFILE) $(patsubst %.c,$(INCDIR)/%.c,$(CINCS)) $(INCDIR)/$(ASMH)
146 # Warning : do not include .c files from inc/ as they are included into the other C files and automatically compiled.
148 # Flash data files
149 FIXEDCLASSES = FixedConfig1.c FixedConfig2.c
150 LOOKUPCLASSES1 = IATTransferTable.c CHTTransferTable.c
151 LOOKUPCLASSES2 = MAFTransferTable.c TestTransferTable.c
152 FUELCLASSES = FuelTables.c FuelTables2.c
153 TIMECLASSES = TimingTables.c TimingTables2.c
154 TUNECLASSES = TunableConfig.c TunableConfig2.c
156 # Source code files
157 UTILCLASSES = tableLookup.c init.c utils.c globalConstants.c
158 MATHCLASSES = coreVarsGenerator.c derivedVarsGenerator.c fuelAndIgnitionCalcs.c
159 COMCLASSES = flashWrite.c commsCore.c blockDetailsLookup.c
160 ISRCLASSES = interrupts.c injectionISRs.c ignitionISRs.c commsISRs.c realtimeISRs.c miscISRs.c
162 # All but the engine position/RPM combined here
163 SOURCE = freeEMS.c staticInit.c main.c $(UTILCLASSES) $(MATHCLASSES) $(COMCLASSES) $(ISRCLASSES)
164 DATA = $(FIXEDCLASSES) $(LOOKUPCLASSES1) $(LOOKUPCLASSES2) $(FUELCLASSES) $(TIMECLASSES) $(TUNECLASSES)
165 CLASSES = $(SOURCE) $(DATA)
167 # Engine position/RPM here
168 RPMCLASSES = NipponDenso.c LT1-360-8.c Subaru-36-2-2-2.c MissingTeeth.c MiataNB.c
169 # future rpm = NissanRB2X.c NissanSR20.c MiataNA.c etc... Insert your file above and get coding!
172 # Convert extensions
173 PREPROCESSED = $(patsubst %.c,$(PPCDIR)/%.pp.c,$(CLASSES))
174 ASSEMBLIES = $(patsubst %.c,$(ASMDIR)/%.s,$(CLASSES))
175 OBJECTS = $(patsubst %.c,$(OBJDIR)/%.o,$(CLASSES)) $(patsubst %.s,$(OBJDIR)/%.o,$(HANDASMS))
176 DUMPS = $(patsubst %.c,$(BUGDIR)/%.dmp,$(CLASSES)) $(patsubst %.s,$(BUGDIR)/%.dmp,$(HANDASMS))
178 # Convert RPM extensions
179 PREPROCESSEDRPM = $(patsubst %.c,$(PPCDIR)/%.pp.c,$(RPMCLASSES))
180 ASSEMBLIESRPM = $(patsubst %.c,$(ASMDIR)/%.s,$(RPMCLASSES))
181 OBJECTSRPM = $(patsubst %.c,$(OBJDIR)/%.o,$(RPMCLASSES)) #$(patsubst %.s,$(OBJDIR)/%.o,$(RPMHANDASMS))
182 DUMPSRPM = $(patsubst %.c,$(BUGDIR)/%.dmp,$(RPMCLASSES)) #$(patsubst %.s,$(BUGDIR)/%.dmp,$(RPMHANDASMS))
184 # Convert to output files
185 ALLELFS = $(patsubst %.c,$(OUTDIR)/$(OUTPREFIX)-$(VERSION)-%.elf,$(RPMCLASSES)) #$(patsubst %.s,$(OUTDIR)/$(OUTPREFIX)-$(VERSION)-%.elf,$(RPMHANDASMS))
186 ALLDMPS = $(patsubst %.c,$(BUGDIR)/$(OUTPREFIX)-$(VERSION)-%.dmp,$(RPMCLASSES)) #$(patsubst %.s,$(BUGDIR)/$(OUTPREFIX)-$(VERSION)-%.dmp,$(RPMHANDASMS))
187 ALLMAPS = $(patsubst %.c,$(BUGDIR)/$(OUTPREFIX)-$(VERSION)-%.map,$(RPMCLASSES)) #$(patsubst %.s,$(BUGDIR)/$(OUTPREFIX)-$(VERSION)-%.map,$(RPMHANDASMS))
188 ALLREAD = $(patsubst %.c,$(BUGDIR)/$(OUTPREFIX)-$(VERSION)-%.ree,$(RPMCLASSES)) #$(patsubst %.s,$(BUGDIR)/$(OUTPREFIX)-$(VERSION)-%.ree,$(RPMHANDASMS))
189 ALLS19S = $(patsubst %.c,$(S19DIR)/$(OUTPREFIX)-$(VERSION)-%.s19,$(RPMCLASSES)) #$(patsubst %.s,$(S19DIR)/$(OUTPREFIX)-$(VERSION)-%.s19,$(RPMHANDASMS))
191 # Convert to output files for GC variants
192 GCDELFS = $(patsubst %.c,$(OUTDIR)/$(OUTPREFIX)-$(VERSION)-%.gc.elf,$(RPMCLASSES)) #$(patsubst %.s,$(OUTDIR)/$(OUTPREFIX)-$(VERSION)-%.gc.elf,$(RPMHANDASMS))
193 GCDS19S = $(patsubst %.c,$(S19DIR)/$(OUTPREFIX)-$(VERSION)-%.gc.s19,$(RPMCLASSES)) #$(patsubst %.s,$(S19DIR)/$(OUTPREFIX)-$(VERSION)-%.gc.s19,$(RPMHANDASMS))
198 ################################################################################
199 # All Command Line Options #
200 ################################################################################
203 # M68hc1x GCC Options we may want : -minmax -mlong-calls
205 # http://www.gnu.org/software/m68hc11/m68hc11_gcc.html shows code size with different options used
206 # include debug info, optimise , 16 bit ints, hcs12 platform
207 GCCOPTS = -g -Wall -Werror -Winline -O -m68hcs12 -mshort -ffunction-sections -fomit-frame-pointer -msoft-reg-count=8 -mauto-incdec -fsigned-char
208 # -ffunction-sections option splits out the functions such that the garbage collection can get
209 # them on a per section basis. I'm not sure, but this could be harmful to paged code so may
210 # have to review this at a later date perhaps splitting paged functions from nonpaged ones.
212 # pass to linker, link for hc12
213 # The vectors address in the linker options is the VMA address and must be short form 0xF710, not a paged address.
214 LINKOPTS = -Wl,-defsym,vectors_addr=0xF710,-m,m68hc12elfb,-T,hc9s12xdp512elfb.x
215 LINKOPTSGC = -Wl,--gc-sections,--print-gc-sections,-defsym,vectors_addr=0xF710,-m,m68hc12elfb,-T,hc9s12xdp512elfb.x
216 # Use this to get a map dump when the linker fails in a confusing way :
217 #LINKOPTSGC = -Wl,--print-map,--gc-sections,--print-gc-sections,-defsym,vectors_addr=0xF710,-m,m68hc12elfb,-T,hc9s12xdp512elfb.x
219 # If using the below option for paged flash, the ADDRESS_TYPE field in the freeEMSloader script should be updated to match.
220 # --change-section-lma .ppagePP=0xPP8000 \ (where PP = the ppage value for that page of flash) OR if using linear address per formula
221 COPYOPTS = --output-target=srec \
222 --change-section-lma .fixedconf1+0xFD4000 \
223 --change-section-lma .fixedconf2+0xFD4000 \
224 --change-section-lma .text1+0xFD4000 \
225 --change-section-lma .text+0xFEC000 \
226 --change-section-lma .data+0xFEC000 \
227 --change-section-lma .vectors+0xFEC000 \
228 --change-section-lma .rodata+0xFEC000 \
229 --only-section=.fixedconf1 \
230 --only-section=.fixedconf2 \
231 --only-section=.text \
232 --only-section=.text1 \
233 --only-section=.data \
234 --only-section=.vectors \
235 --only-section=.rodata \
236 --change-section-lma .ppageF8=0xF88000 \
237 --change-section-lma .fpageF9=0xF98000 \
238 --change-section-lma .dpageF9=0xF9A000 \
239 --change-section-lma .ppageFE=0xFE8000 \
240 --only-section=.ppageF8 \
241 --only-section=.fpageF9 \
242 --only-section=.dpageF9 \
243 --only-section=.ppageFE \
244 --change-section-lma .fpageFA=0xFA8000 \
245 --change-section-lma .dpageFA=0xFAA000 \
246 --change-section-lma .fpageFB=0xFB8000 \
247 --change-section-lma .dpageFB1=0xFBA000 \
248 --change-section-lma .dpageFB2=0xFBA400 \
249 --change-section-lma .dpageFB3=0xFBA800 \
250 --change-section-lma .dpageFB4=0xFBAC00 \
251 --change-section-lma .dpageFB5=0xFBB000 \
252 --change-section-lma .dpageFB6=0xFBB400 \
253 --change-section-lma .dpageFB7=0xFBB800 \
254 --change-section-lma .dpageFB8=0xFBBC00 \
255 --change-section-lma .fpageFC=0xFC8000 \
256 --change-section-lma .dpageFC=0xFCA000 \
257 --only-section=.dpageFA \
258 --only-section=.fpageFA \
259 --only-section=.dpageFB1 \
260 --only-section=.dpageFB2 \
261 --only-section=.dpageFB3 \
262 --only-section=.dpageFB4 \
263 --only-section=.dpageFB5 \
264 --only-section=.dpageFB6 \
265 --only-section=.dpageFB7 \
266 --only-section=.dpageFB8 \
267 --only-section=.fpageFB \
268 --only-section=.dpageFC \
269 --only-section=.fpageFC
270 # --change-section-lma .ppageFD=0xFD8000 \
271 # --change-section-lma .ppageFF=0xFF8000 \
272 # --only-section=.ppageFD \ This is left here for clarity only (equivalent to text1 but paged)
273 # --only-section=.ppageFF This is left here for clarity only (equivalent to text but paged)
274 # Changes to the above options should be reflected in memory.x and memory.h also!
276 # The following flash areas can only be used once Sean has written his loader app :
277 # --only-section=.ppageE0 \
278 # --only-section=.ppageE1 \
279 # --only-section=.ppageE2 \
280 # --only-section=.ppageE3 \
281 # --only-section=.ppageE4 \
282 # --only-section=.ppageE5 \
283 # --only-section=.ppageE6 \
284 # --only-section=.ppageE7 \
285 # --only-section=.ppageE8 \
286 # --only-section=.ppageE9 \
287 # --only-section=.ppageEA \
288 # --only-section=.ppageEB \
289 # --only-section=.ppageEC \
290 # --only-section=.ppageED \
291 # --only-section=.ppageEE \
292 # --only-section=.ppageEF \
293 # --only-section=.ppageF0 \
294 # --only-section=.ppageF1 \
295 # --only-section=.ppageF2 \
296 # --only-section=.ppageF3 \
297 # --only-section=.ppageF4 \
298 # --only-section=.ppageF5 \
299 # --only-section=.ppageF6 \
300 # --only-section=.ppageF7 \
301 # --change-section-lma .ppageE0=0xE08000 \
302 # --change-section-lma .ppageE1=0xE18000 \
303 # --change-section-lma .ppageE2=0xE28000 \
304 # --change-section-lma .ppageE3=0xE38000 \
305 # --change-section-lma .ppageE4=0xE48000 \
306 # --change-section-lma .ppageE5=0xE58000 \
307 # --change-section-lma .ppageE6=0xE68000 \
308 # --change-section-lma .ppageE7=0xE78000 \
309 # --change-section-lma .ppageE8=0xE88000 \
310 # --change-section-lma .ppageE9=0xE98000 \
311 # --change-section-lma .ppageEA=0xEA8000 \
312 # --change-section-lma .ppageEB=0xEB8000 \
313 # --change-section-lma .ppageEC=0xEC8000 \
314 # --change-section-lma .ppageED=0xED8000 \
315 # --change-section-lma .ppageEE=0xEE8000 \
316 # --change-section-lma .ppageEF=0xEF8000 \
317 # --change-section-lma .ppageF0=0xF08000 \
318 # --change-section-lma .ppageF1=0xF18000 \
319 # --change-section-lma .ppageF2=0xF28000 \
320 # --change-section-lma .ppageF3=0xF38000 \
321 # --change-section-lma .ppageF4=0xF48000 \
322 # --change-section-lma .ppageF5=0xF58000 \
323 # --change-section-lma .ppageF6=0xF68000 \
324 # --change-section-lma .ppageF7=0xF78000 \
329 ################################################################################
330 # Dependency And Target Summary #
331 ################################################################################
333 # Top level targets: #
335 # 1) all #
336 # 2) fast #
337 # 3) install #
338 # 4) release #
339 # 5) clean #
341 # Second level targets: #
343 # 1) nonrpm: #
345 # 1) preprocess [list] Generate preprocessed C from sources #
346 # 2) assemble [list] Generate assembly from preprocessed C #
347 # 3) compile [list] Generate object files from assembly #
349 # 2) rpm: #
351 # 1) preprocessrpm [list] Generate preprocessed C from sources #
352 # 2) assemblerpm [list] Generate assembly from preprocessed C #
353 # 3) compilerpm [list] Generate object files from assembly #
355 # 3) final: #
357 # 1) link [list] Generate ELFs objects #
358 # 2) copy [list] s19s from elfs #
360 # 4) debug: #
362 # 1) link [list] Generate ELFs objects #
363 # 2) dump [list] dumpslarge from elfs #
364 # 3) map [list] mapslarge from elfs #
365 # 4) read [list] relarge from elfs #
366 # 5) dumpsmall [list] dumpsall from obj + rpmobj #
368 # release : md5sum, export, zip, copy, docs, etc #
370 ################################################################################
375 ################################################################################
376 # All Target Dependencies #
377 ################################################################################
380 # Build everything the long way (default)
381 all: gcs19 s19 size
382 allfull: s19 size
383 allgc: gcs19 size #...
385 # Build minimally and quickly
386 #fast: lessthings here
388 # Load the s19 of your choice
389 #install: clean fast loader
391 # Perform a release
392 #release: clean cleanrelease fast someMoreStuffHere
394 clean: cleanasm cleanobj cleanout cleanppc cleans19 cleandebug
396 #final: link copy
398 #debug: dump map read dumpsmall
403 ################################################################################
404 # Debug Target Definitions #
405 ################################################################################
408 #maps
409 #rees
411 mapsmsg:
412 ################################################################################
413 # Generating memory maps.... #
414 ################################################################################
416 maps: link $(BUGDIR) mapsmsg $(ALLMAPS)
418 $(ALLMAPS): $(BUGDIR)/%.map: $(OUTDIR)/%.elf
419 $(NM) $< | sort > $@
422 reesmsg:
423 ################################################################################
424 # Reading all elf files... #
425 ################################################################################
427 rees: link $(BUGDIR) reesmsg $(ALLREAD)
429 $(ALLREAD): $(BUGDIR)/%.ree: $(OUTDIR)/%.elf
430 $(RE) -a -W $< > $@
433 elfdmpsmsg:
434 ################################################################################
435 # Dumping all elf files... #
436 ################################################################################
438 elfdmps: link $(BUGDIR) elfdmpsmsg $(ALLDMPS)
440 $(ALLDMPS): $(BUGDIR)/%.dmp: $(OUTDIR)/%.elf
441 $(DUMP) -spSd $< > $@
444 objdmpmsg:
445 ################################################################################
446 # Dumping all object files.... #
447 ################################################################################
449 objdmps: assemble $(BUGDIR) objdmpmsg $(DUMPS) $(DUMPSRPM)
451 $(DUMPS) $(DUMPSRPM): $(BUGDIR)/%.dmp: $(OBJDIR)/%.o
452 $(DUMP) -spSd $< > $@
456 ################################################################################
457 # Link and Copy Target Definitions #
458 ################################################################################
461 linkmsg: #...
462 ################################################################################
463 # Linking the Objects into an ELF... #
464 ################################################################################
466 link: assemble $(OUTDIR) linkmsg $(ALLELFS)
468 # link the object files into an elf executable
469 $(ALLELFS): $(OUTDIR)/$(OUTPREFIX)-$(VERSION)-%.elf: $(OBJDIR)/%.o $(OBJECTS)
470 ################################################################################
471 # Linking $@ ...
472 ################################################################################
473 $(GCC) $(GCCOPTS) $(LINKOPTS) -o $@ $< $(OBJECTS)
476 gclinkmsg: #...
477 ################################################################################
478 # Linking the Objects into an ELF... #
479 ################################################################################
481 gclink: assemble $(OUTDIR) linkmsg $(GCDELFS) #...
483 # link the object files into an elf executable with gc...
484 $(GCDELFS): $(OUTDIR)/$(OUTPREFIX)-$(VERSION)-%.gc.elf: $(OBJDIR)/%.o $(OBJECTS) #...
485 ################################################################################
486 # Linking $@ ...
487 ################################################################################
488 $(GCC) $(GCCOPTS) $(LINKOPTSGC) -o $@ $< $(OBJECTS) # ...
489 # The links with garbage collection are to ensure that there are no warnings ...
490 # TODO find out how to stop .tramp from being collected (or inserted)! ...
493 s19msg: #...
494 ################################################################################
495 # Building The S19 Files.... #
496 ################################################################################
498 s19: link $(S19DIR) s19msg $(ALLS19S)
499 # the gc dependency is temporary until i figure out if the .tramp removal is an issue or not.
501 # Generate the loadable s19 firmware files
502 $(ALLS19S): $(S19DIR)/%.s19: $(OUTDIR)/%.elf
503 ################################################################################
504 # Building $@ ...
505 ################################################################################
506 $(COPY) $(COPYOPTS) $< $@
507 ################################################################################
508 # Measuring $@ ...
509 ################################################################################
510 echo "Flash image size of $@ is" `echo \`cat $@ | wc -l\` "* 16" | bc -l` "bytes..."
513 gcs19msg: #...
514 ################################################################################
515 # Building The S19 Files.... #
516 ################################################################################
518 gcs19: gclink $(S19DIR) gcs19msg $(GCDS19S) #...
520 # Generate the garbage collected s19 files temporarily...
521 $(GCDS19S): $(S19DIR)/%.s19: $(OUTDIR)/%.elf #...
522 ################################################################################
523 # Building $@ ...
524 ################################################################################
525 $(COPY) $(COPYOPTS) $< $@ #...
526 ################################################################################
527 # Measuring $@ ...
528 ################################################################################
529 echo "Flash image size of $@ is" `echo \`cat $@ | wc -l\` "* 16" | bc -l` "bytes..."
534 ################################################################################
535 # Size Measuring Target Definition #
536 ################################################################################
539 size: # TODO this should be run for each s19 target with only the one rpm .o file
540 ################################################################################
541 # Measuring The Decoder Binaries... #
542 ################################################################################
543 $(SIZE) $(OBJECTSRPM)
544 ################################################################################
545 # Measuring All Other Binaries... #
546 ################################################################################
547 $(SIZE) -t $(OBJECTS)
548 ################################################################################
549 # Add one decoder to the total above and #
550 # subtract the size reported for freeEMS.o #
551 # this will give you the actual image size #
552 ################################################################################
554 # Thank you for building FreeEMS firmware!!! #
556 ################################################################################
561 ################################################################################
562 # Preprocess, Compile and Assemble Target Definitions #
563 ################################################################################
566 preprocessmsg: #...
567 ################################################################################
568 # Running the C Pre Processor... #
569 ################################################################################
571 preprocess: $(PPCDIR) preprocessmsg $(PREPROCESSED) $(PREPROCESSEDRPM)
573 # Generate preprocessed source files to examine
574 $(PREPROCESSED) $(PREPROCESSEDRPM): $(PPCDIR)/%.pp.c: %.c $(ALLH)
575 $(GCC) $(GCCOPTS) -E $< > $@
578 compilemsg: #...
579 ################################################################################
580 # Compiling PPC to Assembly... #
581 ################################################################################
583 compile: preprocess compilemsg $(ASSEMBLIES) $(ASSEMBLIESRPM)
585 # Generate assembly files to examine
586 $(ASSEMBLIES) $(ASSEMBLIESRPM): $(ASMDIR)/%.s: $(PPCDIR)/%.pp.c
587 $(GCC) $(GCCOPTS) -x cpp-output -S -o $@ $<
590 assemblemsg: #...
591 ################################################################################
592 # Assembling Object Files... #
593 ################################################################################
595 assemble: compile $(OBJDIR) assemblemsg $(OBJECTS) $(OBJECTSRPM)
597 # Generate object files to link
598 $(OBJECTS) $(OBJECTSRPM): $(OBJDIR)/%.o: $(ASMDIR)/%.s
599 $(GCC) $(GCCOPTS) -c -o $@ $<
604 ################################################################################
605 # Release Procedure Target Definitions #
606 ################################################################################
608 ### clean all
610 #check git status for changes, fail build if not fully commited
612 ### build all
614 #copy s19s up
616 #md5sum/sha1sum s19s above
618 ### clean all
620 #git commit s19s
622 #zip each s19 to parent
624 #zip docs to parent
626 #zip without docs to parent
628 #zip entire directory to parent
633 ################################################################################
634 # Create Directory Target Definitions #
635 ################################################################################
637 # Assembly, release and inc directories don't get removed.
639 $(BUGDIR):
640 ################################################################################
641 # Creating the debug directory.... #
642 ################################################################################
643 $(MKDIR) $(BUGDIR)$(PATHSEP)hack
644 rmdir $(BUGDIR)$(PATHSEP)hack
646 $(S19DIR):
647 ################################################################################
648 # Creating the firmware directory... #
649 ################################################################################
650 $(MKDIR) $(S19DIR)$(PATHSEP)hack
651 rmdir $(S19DIR)$(PATHSEP)hack
653 $(PPCDIR):
654 ################################################################################
655 # Creating the preprocessedc directory.... #
656 ################################################################################
657 $(MKDIR) $(PPCDIR)$(PATHSEP)hack
658 rmdir $(PPCDIR)$(PATHSEP)hack
660 $(OUTDIR):
661 ################################################################################
662 # Creating the output directory... #
663 ################################################################################
664 $(MKDIR) $(OUTDIR)$(PATHSEP)hack
665 rmdir $(OUTDIR)$(PATHSEP)hack
667 $(OBJDIR):
668 ################################################################################
669 # Creating the object directory... #
670 ################################################################################
671 $(MKDIR) $(OBJDIR)$(PATHSEP)hack
672 rmdir $(OBJDIR)$(PATHSEP)hack
677 ################################################################################
678 # Clean Target Definitions #
679 ################################################################################
681 cleanasm:
682 ################################################################################
683 # Removing generated assembly files.... #
684 ################################################################################
685 $(RM) $(ASSEMBLIES) $(ASSEMBLIESRPM)
687 cleanppc:
688 ################################################################################
689 # Removing pre-processed C output directory... #
690 ################################################################################
691 $(RM) $(PPCDIR)
693 cleanobj:
694 ################################################################################
695 # Removing object directory... #
696 ################################################################################
697 $(RM) $(OBJDIR)
699 cleanout:
700 ################################################################################
701 # Removing link output directory... #
702 ################################################################################
703 $(RM) $(OUTDIR)
705 cleans19:
706 ################################################################################
707 # Removing s19 directory... #
708 ################################################################################
709 $(RM) $(S19DIR)
711 cleandebug:
712 ################################################################################
713 # Removing debug directory... #
714 ################################################################################
715 $(RM) $(DEBUGDIR)
717 cleanrelease:
718 ################################################################################
719 # Removing s19 release files... #
720 ################################################################################
721 $(RM) $(RELEASEDIR)/*
726 ################################################################################
727 # Declare targets that aren't real files #
728 ################################################################################
731 # Top level
732 .PHONY: all fast release clean
733 # Second level
734 .PHONY: rpm nonrpm final debug
735 ## Third level
736 .PHONY: preprocess assemble compile
737 # Comments
738 .PHONY: etc etc etc
739 # Clean targets
740 .PHONY: cleanasm cleandebug cleanobj cleanout cleanppc cleanrelease cleans19