@@ -3,7 +3,7 @@ NAME = Pokespire
DEBUG = FALSE
CC = nspire-gcc
-CFLAGS = -Wall -W -marm
+CFLAGS = -Wall -W -marm -I include -I art
LD = nspire-ld
LDFLAGS =
@@ -1,5 +1,5 @@
#include <os.h>
-#include "graphics.h"
+#include <graphics.h>
#define LCD_CONTROLLER 0xC0000000
volatile unsigned *lcd_base = (unsigned *) (LCD_CONTROLLER + 0x10);
@@ -1,8 +1,8 @@
-#include "timers.h"
-#include "map.h"
-#include "main.h"
+#include <timers.h>
+#include <map.h>
+#include <main.h>
int main(int argc, char *argv[])
{
-#include "../art/sprites.h"
+#include <sprites.h>
static void map_walk_speed_load(unsigned time);
static unsigned map_walk_speed_read(unsigned time, unsigned div);
#define TIMER 0x900D0000
unsigned timer_ctl_bkp[2], timer_load_bkp[2];