[595] | 1 | -include params.mk |
---|
[302] | 2 | |
---|
[595] | 3 | export # export all variable to applications sub-Makefile |
---|
| 4 | |
---|
[232] | 5 | CC = mipsel-unknown-elf-gcc |
---|
| 6 | AS = mipsel-unknown-elf-as |
---|
| 7 | LD = mipsel-unknown-elf-ld |
---|
| 8 | DU = mipsel-unknown-elf-objdump |
---|
[380] | 9 | AR = mipsel-unknown-elf-ar |
---|
[158] | 10 | |
---|
[595] | 11 | # Defaults values for hardware parameters and applications |
---|
[611] | 12 | # These parameters should be defined in the params.mk file |
---|
[595] | 13 | ARCH ?= pathname |
---|
[581] | 14 | X_SIZE ?= 1 |
---|
| 15 | Y_SIZE ?= 1 |
---|
[595] | 16 | NB_PROCS ?= 1 |
---|
[580] | 17 | NB_TTYS ?= 1 |
---|
[595] | 18 | FBF_WIDTH ?= 256 |
---|
| 19 | IOC_TYPE ?= BDV |
---|
[611] | 20 | APPLIS ?= shell |
---|
[326] | 21 | |
---|
[595] | 22 | # build the list of applications used as argument by genmap |
---|
| 23 | GENMAP_APPLIS := $(addprefix --,$(APPLIS)) |
---|
[510] | 24 | |
---|
[649] | 25 | # build the list of application.py (used as dependencies by genmap) |
---|
| 26 | APPLIS_PY = applications/classif/classif.py \ |
---|
| 27 | applications/convol/convol.py \ |
---|
| 28 | applications/coproc/coproc.py \ |
---|
| 29 | applications/display/display.py \ |
---|
| 30 | applications/dhrystone/dhrystone.py \ |
---|
| 31 | applications/gameoflife/gameoflife.py \ |
---|
| 32 | applications/ocean/ocean.py \ |
---|
[673] | 33 | applications/raycast/raycast.py \ |
---|
[649] | 34 | applications/router/router.py \ |
---|
| 35 | applications/shell/shell.py \ |
---|
| 36 | applications/sort/sort.py \ |
---|
| 37 | applications/transpose/transpose.py |
---|
[326] | 38 | |
---|
[595] | 39 | # build the list of applications to be executed (used in the all rule) |
---|
| 40 | APPLIS_ELF := $(addsuffix /appli.elf,$(addprefix applications/,$(APPLIS))) |
---|
[204] | 41 | |
---|
[600] | 42 | # Build PYTHONPATH |
---|
[602] | 43 | PYTHONPATH := $(shell find . -name *.py | grep -o "\(.*\)/" | sort -u | tr '\n' :) |
---|
[600] | 44 | |
---|
[595] | 45 | # check hardware platform definition |
---|
| 46 | ifeq ($(wildcard $(ARCH)),) |
---|
| 47 | $(error please define in ARCH parameter the path to the platform) |
---|
| 48 | endif |
---|
[580] | 49 | |
---|
[608] | 50 | ### Rules that don't build a target file |
---|
[662] | 51 | .PHONY: all dirs list extract clean clean-disk install-disk $(APPLIS_ELF) |
---|
[595] | 52 | |
---|
[463] | 53 | ### Objects to be linked for the drivers library |
---|
[535] | 54 | DRIVERS_OBJS = build/drivers/dma_driver.o \ |
---|
| 55 | build/drivers/cma_driver.o \ |
---|
| 56 | build/drivers/xcu_driver.o \ |
---|
| 57 | build/drivers/bdv_driver.o \ |
---|
| 58 | build/drivers/hba_driver.o \ |
---|
| 59 | build/drivers/sdc_driver.o \ |
---|
| 60 | build/drivers/spi_driver.o \ |
---|
| 61 | build/drivers/rdk_driver.o \ |
---|
| 62 | build/drivers/iob_driver.o \ |
---|
| 63 | build/drivers/mmc_driver.o \ |
---|
| 64 | build/drivers/mwr_driver.o \ |
---|
| 65 | build/drivers/nic_driver.o \ |
---|
| 66 | build/drivers/tim_driver.o \ |
---|
| 67 | build/drivers/tty_driver.o \ |
---|
[380] | 68 | build/drivers/pic_driver.o |
---|
| 69 | |
---|
| 70 | ### Objects to be linked for kernel.elf |
---|
[510] | 71 | KERNEL_OBJS = build/common/utils.o \ |
---|
| 72 | build/common/kernel_locks.o \ |
---|
| 73 | build/common/kernel_barriers.o \ |
---|
| 74 | build/common/tty0.o \ |
---|
| 75 | build/common/vmem.o \ |
---|
| 76 | build/common/kernel_malloc.o \ |
---|
| 77 | build/fat32/fat32.o \ |
---|
| 78 | build/kernel/giet.o \ |
---|
| 79 | build/kernel/switch.o \ |
---|
| 80 | build/kernel/ctx_handler.o \ |
---|
| 81 | build/kernel/exc_handler.o \ |
---|
| 82 | build/kernel/sys_handler.o \ |
---|
| 83 | build/kernel/irq_handler.o \ |
---|
[258] | 84 | build/kernel/kernel_init.o |
---|
[162] | 85 | |
---|
[258] | 86 | ### Objects to be linked for boot.elf |
---|
[510] | 87 | BOOT_OBJS = build/common/utils.o \ |
---|
| 88 | build/common/kernel_locks.o \ |
---|
| 89 | build/common/kernel_barriers.o \ |
---|
| 90 | build/common/tty0.o \ |
---|
| 91 | build/common/pmem.o \ |
---|
| 92 | build/common/vmem.o \ |
---|
| 93 | build/common/kernel_malloc.o \ |
---|
| 94 | build/fat32/fat32.o \ |
---|
| 95 | build/kernel/ctx_handler.o \ |
---|
[535] | 96 | build/kernel/irq_handler.o \ |
---|
[595] | 97 | build/kernel/sys_handler.o \ |
---|
[510] | 98 | build/kernel/switch.o \ |
---|
| 99 | build/boot/boot.o \ |
---|
[366] | 100 | build/boot/boot_entry.o |
---|
[258] | 101 | |
---|
[585] | 102 | ### Objects to be linked for the user library |
---|
| 103 | USER_OBJS = build/libs/malloc.o \ |
---|
| 104 | build/libs/mwmr_channel.o \ |
---|
| 105 | build/libs/stdio.o \ |
---|
| 106 | build/libs/stdlib.o \ |
---|
| 107 | build/libs/string.o \ |
---|
| 108 | build/libs/user_barrier.o \ |
---|
| 109 | build/libs/user_lock.o \ |
---|
[595] | 110 | build/libs/user_sqt_lock.o |
---|
[585] | 111 | |
---|
[583] | 112 | ### Objects to be linked for the math library |
---|
| 113 | MATH_OBJS = build/libs/math/e_pow.o \ |
---|
| 114 | build/libs/math/e_rem_pio2.o \ |
---|
| 115 | build/libs/math/k_cos.o \ |
---|
| 116 | build/libs/math/k_rem_pio2.o \ |
---|
| 117 | build/libs/math/k_sin.o \ |
---|
| 118 | build/libs/math/s_copysign.o \ |
---|
| 119 | build/libs/math/s_fabs.o \ |
---|
| 120 | build/libs/math/s_finite.o \ |
---|
| 121 | build/libs/math/s_floor.o \ |
---|
| 122 | build/libs/math/s_isnan.o \ |
---|
| 123 | build/libs/math/sqrt.o \ |
---|
| 124 | build/libs/math/s_rint.o \ |
---|
| 125 | build/libs/math/s_scalbn.o \ |
---|
| 126 | build/libs/math/s_sin.o \ |
---|
[667] | 127 | build/libs/math/s_cos.o \ |
---|
[595] | 128 | build/libs/math/e_sqrt.o |
---|
[580] | 129 | |
---|
[162] | 130 | |
---|
[435] | 131 | CFLAGS = -Wall -ffreestanding -mno-gpopt -mips32 -g -O2 \ |
---|
| 132 | -fno-delete-null-pointer-checks |
---|
[158] | 133 | |
---|
[258] | 134 | GIET_INCLUDE = -Igiet_boot \ |
---|
| 135 | -Igiet_kernel \ |
---|
| 136 | -Igiet_xml \ |
---|
| 137 | -Igiet_fat32 \ |
---|
| 138 | -Igiet_drivers \ |
---|
| 139 | -Igiet_common \ |
---|
| 140 | -Igiet_libs \ |
---|
| 141 | -I. |
---|
[158] | 142 | |
---|
[302] | 143 | DISK_IMAGE := hdd/virt_hdd.dmg |
---|
| 144 | |
---|
[595] | 145 | ### The Mtools used to build the FAT32 disk image perform a few sanity checks, |
---|
[582] | 146 | ### to make sure that the disk is indeed an MS-DOS disk. However, the size |
---|
| 147 | ### of the disk image used by the Giet-VM is not MS-DOS compliant. |
---|
| 148 | ### Setting this variable prevents these checks. |
---|
| 149 | MTOOLS_SKIP_CHECK := 1 |
---|
| 150 | |
---|
[595] | 151 | ################################## |
---|
| 152 | ### first rule executed (make all) |
---|
[599] | 153 | all: dirs \ |
---|
[573] | 154 | map.bin \ |
---|
[326] | 155 | hard_config.h \ |
---|
| 156 | giet_vsegs.ld \ |
---|
[609] | 157 | install-disk |
---|
[580] | 158 | mdir -/ -b -i $(DISK_IMAGE) ::/ |
---|
[160] | 159 | |
---|
[608] | 160 | ##################################################### |
---|
| 161 | ### create build directories |
---|
[599] | 162 | dirs: |
---|
| 163 | @mkdir -p build/boot |
---|
| 164 | @mkdir -p build/common |
---|
| 165 | @mkdir -p build/drivers |
---|
| 166 | @mkdir -p build/fat32 |
---|
| 167 | @mkdir -p build/kernel |
---|
| 168 | @mkdir -p build/libs/math |
---|
| 169 | @mkdir -p hdd |
---|
| 170 | |
---|
[608] | 171 | ##################################################### |
---|
| 172 | ### make a recursive list of the virtual disk content |
---|
| 173 | list: |
---|
| 174 | mdir -/ -w -i $(DISK_IMAGE) ::/ |
---|
| 175 | |
---|
| 176 | ######################################################## |
---|
| 177 | ### copy the files generated by the virtual prototype on |
---|
| 178 | ### the virtual disk "home" directory to the giet_vm home directory |
---|
| 179 | extract: |
---|
| 180 | mcopy -o -i $(DISK_IMAGE) ::/home . |
---|
| 181 | |
---|
| 182 | ######################################## |
---|
| 183 | ### clean all binary files |
---|
| 184 | clean: |
---|
| 185 | rm -f *.o *.elf *.bin *.txt core |
---|
| 186 | rm -f hard_config.h giet_vsegs.ld map.bin map.xml |
---|
[694] | 187 | rm -rf build/ |
---|
[611] | 188 | cd applications/classif && $(MAKE) clean && cd ../.. |
---|
| 189 | cd applications/convol && $(MAKE) clean && cd ../.. |
---|
| 190 | cd applications/coproc && $(MAKE) clean && cd ../.. |
---|
| 191 | cd applications/display && $(MAKE) clean && cd ../.. |
---|
| 192 | cd applications/dhrystone && $(MAKE) clean && cd ../.. |
---|
| 193 | cd applications/gameoflife && $(MAKE) clean && cd ../.. |
---|
| 194 | cd applications/ocean && $(MAKE) clean && cd ../.. |
---|
[673] | 195 | cd applications/raycast && $(MAKE) clean && cd ../.. |
---|
[611] | 196 | cd applications/router && $(MAKE) clean && cd ../.. |
---|
| 197 | cd applications/shell && $(MAKE) clean && cd ../.. |
---|
| 198 | cd applications/sort && $(MAKE) clean && cd ../.. |
---|
| 199 | cd applications/transpose && $(MAKE) clean && cd ../.. |
---|
[608] | 200 | |
---|
| 201 | ######################################## |
---|
| 202 | ### delete disk image |
---|
| 203 | clean-disk: |
---|
[694] | 204 | rm -rf hdd/ |
---|
[608] | 205 | |
---|
[609] | 206 | ######################################## |
---|
| 207 | ### Copy content in the disk image |
---|
| 208 | ### create the three build / misc / home directories |
---|
| 209 | ### store the images files into misc |
---|
| 210 | install-disk: $(DISK_IMAGE) build/kernel/kernel.elf $(APPLIS_ELF) |
---|
[611] | 211 | mmd -o -i $< ::/bin || true |
---|
| 212 | mmd -o -i $< ::/bin/kernel || true |
---|
| 213 | mmd -o -i $< ::/bin/classif || true |
---|
| 214 | mmd -o -i $< ::/bin/convol || true |
---|
| 215 | mmd -o -i $< ::/bin/coproc || true |
---|
| 216 | mmd -o -i $< ::/bin/dhrystone || true |
---|
| 217 | mmd -o -i $< ::/bin/display || true |
---|
| 218 | mmd -o -i $< ::/bin/gameoflife || true |
---|
| 219 | mmd -o -i $< ::/bin/ocean || true |
---|
[673] | 220 | mmd -o -i $< ::/bin/raycast || true |
---|
[611] | 221 | mmd -o -i $< ::/bin/router || true |
---|
| 222 | mmd -o -i $< ::/bin/shell || true |
---|
| 223 | mmd -o -i $< ::/bin/sort || true |
---|
| 224 | mmd -o -i $< ::/bin/transpose || true |
---|
| 225 | mmd -o -i $< ::/misc || true |
---|
| 226 | mmd -o -i $< ::/home || true |
---|
[609] | 227 | mcopy -o -i $< map.bin ::/ |
---|
[611] | 228 | mcopy -o -i $< build/kernel/kernel.elf ::/bin/kernel |
---|
| 229 | mcopy -o -i $< applications/classif/appli.elf ::/bin/classif || true |
---|
| 230 | mcopy -o -i $< applications/convol/appli.elf ::/bin/convol || true |
---|
| 231 | mcopy -o -i $< applications/coproc/appli.elf ::/bin/coproc || true |
---|
| 232 | mcopy -o -i $< applications/dhrystone/appli.elf ::/bin/dhrystone || true |
---|
| 233 | mcopy -o -i $< applications/display/appli.elf ::/bin/display || true |
---|
| 234 | mcopy -o -i $< applications/gameoflife/appli.elf ::/bin/gameoflife || true |
---|
| 235 | mcopy -o -i $< applications/ocean/appli.elf ::/bin/ocean || true |
---|
[673] | 236 | mcopy -o -i $< applications/raycast/appli.elf ::/bin/raycast || true |
---|
[611] | 237 | mcopy -o -i $< applications/router/appli.elf ::/bin/router || true |
---|
| 238 | mcopy -o -i $< applications/shell/appli.elf ::/bin/shell || true |
---|
| 239 | mcopy -o -i $< applications/sort/appli.elf ::/bin/sort || true |
---|
| 240 | mcopy -o -i $< applications/transpose/appli.elf ::/bin/transpose || true |
---|
[609] | 241 | mcopy -o -i $< images/images_128.raw ::/misc |
---|
| 242 | mcopy -o -i $< images/philips_1024.raw ::/misc |
---|
| 243 | mcopy -o -i $< images/lena_256.raw ::/misc |
---|
| 244 | mcopy -o -i $< images/bridge_256.raw ::/misc |
---|
| 245 | mcopy -o -i $< images/couple_512.raw ::/misc |
---|
[675] | 246 | mcopy -o -i $< images/door_32.raw ::/misc |
---|
| 247 | mcopy -o -i $< images/handle_32.raw ::/misc |
---|
| 248 | mcopy -o -i $< images/rock_32.raw ::/misc |
---|
| 249 | mcopy -o -i $< images/wood_32.raw ::/misc |
---|
[609] | 250 | |
---|
[595] | 251 | ######################### |
---|
| 252 | ### Disk image generation |
---|
[582] | 253 | ### This requires the generic LINUX/MacOS script "create_dmg" script |
---|
[258] | 254 | ### written by C.Fuguet. (should be installed in GIET-VM root directory). |
---|
[609] | 255 | $(DISK_IMAGE): build/boot/boot.elf |
---|
| 256 | rm -f $@ |
---|
| 257 | ./create_dmg create $(basename $@) |
---|
| 258 | dd if=$@ of=temp.dmg count=65536 |
---|
| 259 | mv temp.dmg $@ |
---|
| 260 | dd if=build/boot/boot.elf of=$@ seek=2 conv=notrunc |
---|
[295] | 261 | |
---|
[595] | 262 | ######################################################################### |
---|
[326] | 263 | ### mapping generation: map.bin / map.xml / hard_config.h / giet_vsegs.ld |
---|
[595] | 264 | ### TODO add dépendancies on appli.py files : $(APPLIS_DEPS) |
---|
[600] | 265 | map.bin hard_config.h giet_vsegs.ld: $(ARCH)/arch.py $(APPLIS_PY) |
---|
[510] | 266 | giet_python/genmap --arch=$(ARCH) \ |
---|
| 267 | --x=$(X_SIZE) \ |
---|
| 268 | --y=$(Y_SIZE) \ |
---|
| 269 | --p=$(NB_PROCS) \ |
---|
| 270 | --tty=$(NB_TTYS) \ |
---|
| 271 | --fbf=$(FBF_WIDTH) \ |
---|
[553] | 272 | --ioc=$(IOC_TYPE) \ |
---|
[510] | 273 | --giet=. \ |
---|
[595] | 274 | $(GENMAP_APPLIS) \ |
---|
[510] | 275 | --xml=. |
---|
[158] | 276 | |
---|
[583] | 277 | ################################ |
---|
| 278 | ### drivers library compilation |
---|
| 279 | build/drivers/%.o: giet_drivers/%.c \ |
---|
| 280 | giet_drivers/%.h \ |
---|
| 281 | hard_config.h \ |
---|
| 282 | giet_config.h |
---|
[295] | 283 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
| 284 | |
---|
[380] | 285 | build/drivers/libdrivers.a: $(DRIVERS_OBJS) |
---|
| 286 | $(AR) -rcs $@ $(DRIVERS_OBJS) |
---|
| 287 | |
---|
[374] | 288 | ########################## |
---|
[583] | 289 | ### fat32 compilation |
---|
[258] | 290 | build/fat32/fat32.o: giet_fat32/fat32.c \ |
---|
| 291 | giet_fat32/fat32.h \ |
---|
[326] | 292 | hard_config.h \ |
---|
| 293 | giet_config.h |
---|
[258] | 294 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
| 295 | |
---|
[583] | 296 | ########################## |
---|
| 297 | ### common compilation |
---|
| 298 | build/common/%.o: giet_common/%.c \ |
---|
| 299 | giet_common/%.h \ |
---|
| 300 | hard_config.h \ |
---|
| 301 | giet_config.h |
---|
[258] | 302 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
| 303 | |
---|
[374] | 304 | ######################## |
---|
[177] | 305 | ### boot compilation |
---|
[573] | 306 | ### Copy bootloader into sector 2 of disk image |
---|
[326] | 307 | build/boot/boot.elf: $(BOOT_OBJS) \ |
---|
[380] | 308 | giet_boot/boot.ld \ |
---|
[583] | 309 | build/drivers/libdrivers.a |
---|
[582] | 310 | $(LD) -o $@ -T giet_boot/boot.ld $(BOOT_OBJS) -Lbuild/drivers -ldrivers |
---|
[189] | 311 | $(DU) -D $@ > $@.txt |
---|
[158] | 312 | |
---|
[258] | 313 | build/boot/boot.o: giet_boot/boot.c \ |
---|
| 314 | giet_common/utils.h \ |
---|
| 315 | giet_fat32/fat32.h \ |
---|
[289] | 316 | giet_common/vmem.h \ |
---|
[326] | 317 | hard_config.h \ |
---|
[366] | 318 | giet_config.h |
---|
[258] | 319 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
[158] | 320 | |
---|
[366] | 321 | build/boot/boot_entry.o: giet_boot/boot_entry.S \ |
---|
| 322 | hard_config.h |
---|
| 323 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
| 324 | |
---|
[374] | 325 | ######################### |
---|
[258] | 326 | ### kernel compilation |
---|
[326] | 327 | build/kernel/kernel.elf: $(KERNEL_OBJS) \ |
---|
[380] | 328 | giet_kernel/kernel.ld \ |
---|
| 329 | build/drivers/libdrivers.a |
---|
[582] | 330 | $(LD) -o $@ -T giet_kernel/kernel.ld $(KERNEL_OBJS) -Lbuild/drivers -ldrivers |
---|
| 331 | $(DU) -D $@ > $@.txt |
---|
[158] | 332 | |
---|
[326] | 333 | build/kernel/%.o: giet_kernel/%.c \ |
---|
| 334 | hard_config.h \ |
---|
[582] | 335 | giet_config.h |
---|
[258] | 336 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
| 337 | |
---|
[326] | 338 | build/kernel/%.o: giet_kernel/%.s \ |
---|
| 339 | hard_config.h \ |
---|
[582] | 340 | giet_config.h |
---|
[258] | 341 | $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< |
---|
| 342 | |
---|
[374] | 343 | ########################### |
---|
[585] | 344 | ### user library compilation |
---|
[595] | 345 | build/libs/%.o: giet_libs/%.c \ |
---|
| 346 | giet_libs/%.h \ |
---|
| 347 | hard_config.h \ |
---|
| 348 | giet_config.h |
---|
| 349 | $(CC) $(CFLAGS) $(GIET_INCLUDE) -c -o $@ $< |
---|
[258] | 350 | |
---|
[585] | 351 | build/libs/libuser.a: $(USER_OBJS) |
---|
| 352 | $(AR) -rcs $@ $^ |
---|
| 353 | |
---|
[583] | 354 | ################################ |
---|
| 355 | ### math library compilation |
---|
| 356 | build/libs/math/%.o: giet_libs/math/%.c \ |
---|
| 357 | giet_libs/math/math_private.h \ |
---|
| 358 | giet_libs/math.h |
---|
[595] | 359 | $(CC) $(CFLAGS) $(GIET_INCLUDE) -c -o $@ $< |
---|
[258] | 360 | |
---|
[583] | 361 | build/libs/libmath.a: $(MATH_OBJS) |
---|
[580] | 362 | $(AR) -rcs $@ $^ |
---|
| 363 | |
---|
[374] | 364 | ######################################## |
---|
[595] | 365 | ### classif application compilation |
---|
[609] | 366 | applications/classif/appli.elf: build/libs/libuser.a |
---|
[595] | 367 | $(MAKE) -C applications/classif |
---|
[189] | 368 | |
---|
[595] | 369 | ######################################## |
---|
| 370 | ### convol application compilation |
---|
[609] | 371 | applications/convol/appli.elf: build/libs/libuser.a |
---|
[595] | 372 | $(MAKE) -C applications/convol |
---|
[189] | 373 | |
---|
[374] | 374 | ######################################## |
---|
[595] | 375 | ### coproc application compilation |
---|
[609] | 376 | applications/coproc/appli.elf: build/libs/libuser.a |
---|
[595] | 377 | $(MAKE) -C applications/coproc |
---|
[189] | 378 | |
---|
[595] | 379 | ######################################## |
---|
| 380 | ### dhrystone application compilation |
---|
[609] | 381 | applications/dhrystone/appli.elf: build/libs/libuser.a |
---|
[595] | 382 | $(MAKE) -C applications/dhrystone |
---|
[189] | 383 | |
---|
[374] | 384 | ######################################## |
---|
[595] | 385 | ### display application compilation |
---|
[609] | 386 | applications/display/appli.elf: build/libs/libuser.a |
---|
[595] | 387 | $(MAKE) -C applications/display |
---|
[189] | 388 | |
---|
[374] | 389 | ######################################## |
---|
[595] | 390 | ### gameoflife application compilation |
---|
[609] | 391 | applications/gameoflife/appli.elf: build/libs/libuser.a |
---|
[595] | 392 | $(MAKE) -C applications/gameoflife |
---|
[251] | 393 | |
---|
[595] | 394 | ######################################## |
---|
| 395 | ### ocean application compilation |
---|
[609] | 396 | applications/ocean/appli.elf: build/libs/libmath.a build/libs/libuser.a |
---|
[598] | 397 | cd applications/ocean && $(MAKE) && cd ../.. |
---|
[251] | 398 | |
---|
[374] | 399 | ######################################## |
---|
[673] | 400 | ### raycast application compilation |
---|
| 401 | applications/raycast/appli.elf: build/libs/libmath.a build/libs/libuser.a |
---|
| 402 | $(MAKE) -C applications/raycast |
---|
| 403 | |
---|
| 404 | ######################################## |
---|
[595] | 405 | ### router application compilation |
---|
[609] | 406 | applications/router/appli.elf: build/libs/libuser.a |
---|
[595] | 407 | $(MAKE) -C applications/router |
---|
[241] | 408 | |
---|
[595] | 409 | ######################################## |
---|
| 410 | ### shell application compilation |
---|
[609] | 411 | applications/shell/appli.elf: build/libs/libuser.a |
---|
[595] | 412 | $(MAKE) -C applications/shell |
---|
[241] | 413 | |
---|
[374] | 414 | ######################################## |
---|
[595] | 415 | ### sort application compilation |
---|
[609] | 416 | applications/sort/appli.elf: build/libs/libuser.a |
---|
[595] | 417 | $(MAKE) -C applications/sort |
---|
[256] | 418 | |
---|
[374] | 419 | ######################################## |
---|
[295] | 420 | ### transpose compilation |
---|
[609] | 421 | applications/transpose/appli.elf: build/libs/libuser.a |
---|
[595] | 422 | $(MAKE) -C applications/transpose |
---|
[295] | 423 | |
---|