X-Git-Url: https://git.rohieb.name/hackover2013-badge-firmware.git/blobdiff_plain/8a8f84aa1768c52d1a0c9b8b8ebaeeb4d0206ba2..54e85fb2b4db08d53d63aae600005e8c9091e846:/Makefile diff --git a/Makefile b/Makefile index 0abe529..08e6f70 100644 --- a/Makefile +++ b/Makefile @@ -24,30 +24,44 @@ DEBUGBUILD = FALSE # IDE Flags (Keeps various IDEs happy) ########################################################################## -OPTDEFINES = -D __NEWLIB__ -DR0KET - +#OPTDEFINES = -D __NEWLIB__ -DR0KET +OPTDEFINES = -D __NEWLIB__ -DHOB_REV2 ########################################################################## # Project-specific files ########################################################################## SRCS = \ - badge/main.c \ + badge/fahrplan.c \ badge/init.c \ + badge/main.c \ badge/jumpnrun/collision.c \ badge/jumpnrun/enemies.c \ + badge/jumpnrun/game_state.c \ badge/jumpnrun/items.c \ badge/jumpnrun/jumpnrun.c \ badge/jumpnrun/level_load.c \ + badge/jumpnrun/player.c \ + badge/jumpnrun/render.c \ + badge/jumpnrun/shots.c \ + badge/jumpnrun/starter.c \ + badge/jumpnrun/stats.c \ badge/jumpnrun/tiles.c \ + badge/ui/browser.c \ badge/ui/display.c \ badge/ui/event.c \ - badge/ui/sprite.c + badge/ui/font.c \ + badge/ui/menu.c \ + badge/ui/sprite.c \ + badge/ui/vanity.c SRCS += \ dataflash/iobase.c \ dataflash/diskio.c \ dataflash/at45db041d.c +SRCS += \ + funk/nrf24l01p.c + SRCS += \ project/commands.c @@ -226,7 +240,6 @@ SRCS += \ core/cmd/cmd.c \ core/cpu/cpu.c \ core/gpio/gpio.c \ - core/i2c/i2c.c \ core/iap/iap.c \ core/libc/stdio.c \ core/libc/string.c \ @@ -236,8 +249,6 @@ SRCS += \ core/systick/systick.c \ core/timer16/timer16.c \ core/timer32/timer32.c \ - core/uart/uart_buf.c \ - core/uart/uart.c \ core/usbcdc/cdc_buf.c \ core/usbcdc/cdcuser.c \ core/usbcdc/usbcore.c \ @@ -249,6 +260,10 @@ SRCS += \ core/usbhid-rom/usbmsc.c \ core/wdt/wdt.c +# core/i2c/i2c.c +# core/uart/uart_buf.c +# core/uart/uart.c + ########################################################################## # GNU GCC compiler prefix and location ##########################################################################