mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Renamed drive system files, see #88
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#include "toy_drive_system.h"
|
||||
#include "drive_system.h"
|
||||
|
||||
#include "toy_memory.h"
|
||||
#include "toy_literal_dictionary.h"
|
||||
@@ -1,10 +1,10 @@
|
||||
#include "lib_runner.h"
|
||||
|
||||
#include "toy_memory.h"
|
||||
#include "toy_drive_system.h"
|
||||
#include "toy_interpreter.h"
|
||||
|
||||
#include "repl_tools.h"
|
||||
#include "drive_system.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
#include "repl_tools.h"
|
||||
#include "drive_system.h"
|
||||
#include "lib_about.h"
|
||||
#include "lib_standard.h"
|
||||
#include "lib_random.h"
|
||||
|
||||
@@ -17,13 +17,11 @@ The most important macro is `TOY_API`, which specifies functions intended for th
|
||||
* [toy_common.h](toy_common_h.md)
|
||||
* [toy_console_colors.h](toy_console_colors_h.md)
|
||||
* [toy_memory.h](toy_memory_h.md)
|
||||
* [toy_drive_system.h](toy_drive_system_h.md)
|
||||
!*/
|
||||
|
||||
#include "toy_common.h"
|
||||
#include "toy_console_colors.h"
|
||||
#include "toy_memory.h"
|
||||
#include "toy_drive_system.h"
|
||||
|
||||
/*!
|
||||
## Core Pipeline
|
||||
|
||||
@@ -4,7 +4,7 @@ IDIR +=. ../source ../repl
|
||||
CFLAGS +=$(addprefix -I,$(IDIR)) -g -Wall -W -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable
|
||||
LIBS +=
|
||||
ODIR = obj
|
||||
TARGETS = $(wildcard ../source/*.c) $(wildcard ../repl/lib_*.c) ../repl/repl_tools.c ../repl/toy_drive_system.c
|
||||
TARGETS = $(wildcard ../source/*.c) $(wildcard ../repl/lib_*.c) ../repl/repl_tools.c ../repl/drive_system.c
|
||||
TESTS = $(wildcard test_*.c)
|
||||
OBJ = $(addprefix $(ODIR)/,$(TARGETS:../source/%.c=%.o)) $(addprefix $(ODIR)/,$(TESTS:.c=.o))
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "toy_drive_system.h"
|
||||
#include "drive_system.h"
|
||||
|
||||
#include "toy_console_colors.h"
|
||||
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
#include "toy_console_colors.h"
|
||||
|
||||
#include "toy_memory.h"
|
||||
#include "toy_drive_system.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "../repl/repl_tools.h"
|
||||
#include "../repl/drive_system.h"
|
||||
|
||||
#include "../repl/lib_about.h"
|
||||
#include "../repl/lib_random.h"
|
||||
|
||||
Reference in New Issue
Block a user