Skip to content

Commit

Permalink
missed backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffayle committed Jan 11, 2022
1 parent 688f715 commit a0f9a1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ export PATH:=$(PATH):/opt/devkitpro/devkitARM/bin/
export C_INCLUDE_PATH:=$(C_INCLUDE_PATH):/opt/devkitpro/libgba/include/

tamaboy.gba: cpu.o interrupt.c kernel.c hal.c rom.c
arm-none-eabi-gcc -O3 -mthumb -mthumb-interwork \
arm-none-eabi-gcc -O3 -mthumb -mthumb-interwork \
-specs=gba_mb.specs -o tamaboy.gba \
interrupt.c cpu.o hw.o tamalib.o kernel.c hal.c rom.c

cpu.o: tamalib/cpu.c tamalib/hw.c tamalib/tamalib.c
arm-none-eabi-gcc -Os -mthumb -mthumb-interwork
arm-none-eabi-gcc -Os -mthumb -mthumb-interwork \
-c tamalib/cpu.c tamalib/hw.c tamalib/tamalib.c

rom.c: tama.b
Expand Down

0 comments on commit a0f9a1f

Please sign in to comment.