Rename project
This commit is contained in:
parent
6337d202d6
commit
cc75cb60a3
9 changed files with 23 additions and 23 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
|||
/src/*.o
|
||||
|
||||
/lisp
|
||||
/lisp-test
|
||||
/arcane-scheme-lisp
|
||||
/arcane-scheme-lisp-test
|
||||
|
|
14
Makefile
14
Makefile
|
@ -15,19 +15,19 @@ OBJS = \
|
|||
MAIN_OBJS = $(OBJS) src/main.c.o
|
||||
TEST_OBJS = $(OBJS) src/main-test.c.o
|
||||
|
||||
repl: lisp
|
||||
./lisp
|
||||
repl: arcane-scheme-lisp
|
||||
./arcane-scheme-lisp
|
||||
|
||||
test: lisp-test
|
||||
./lisp-test
|
||||
test: arcane-scheme-lisp-test
|
||||
./arcane-scheme-lisp-test
|
||||
|
||||
clean:
|
||||
rm -f lisp $(MAIN_OBJS) $(TEST_OBJS)
|
||||
rm -f arcane-scheme-lisp arcane-scheme-lisp-test $(MAIN_OBJS) $(TEST_OBJS)
|
||||
|
||||
lisp: $(MAIN_OBJS)
|
||||
arcane-scheme-lisp: $(MAIN_OBJS)
|
||||
$(CC) -o $@ $^ $(CFLAGS)
|
||||
|
||||
lisp-test: $(TEST_OBJS)
|
||||
arcane-scheme-lisp-test: $(TEST_OBJS)
|
||||
$(CC) -o $@ $^ $(CFLAGS)
|
||||
|
||||
%.c.o: %.c
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_BUILTINS_H__
|
||||
#define __LISP_BUILTINS_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_BUILTINS_H__
|
||||
#define __ARCANE_SCHEME_LISP_BUILTINS_H__
|
||||
|
||||
#include "object.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_CTYPE_H__
|
||||
#define __LISP_CTYPE_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_CTYPE_H__
|
||||
#define __ARCANE_SCHEME_LISP_CTYPE_H__
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_EVAL_H__
|
||||
#define __LISP_EVAL_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_EVAL_H__
|
||||
#define __ARCANE_SCHEME_LISP_EVAL_H__
|
||||
|
||||
#include "object.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_LEXER_H__
|
||||
#define __LISP_LEXER_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_LEXER_H__
|
||||
#define __ARCANE_SCHEME_LISP_LEXER_H__
|
||||
|
||||
#include "tokens.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_OBJECT_H__
|
||||
#define __LISP_OBJECT_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_OBJECT_H__
|
||||
#define __ARCANE_SCHEME_LISP_OBJECT_H__
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_PARSER_H__
|
||||
#define __LISP_PARSER_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_PARSER_H__
|
||||
#define __ARCANE_SCHEME_LISP_PARSER_H__
|
||||
|
||||
#include "object.h"
|
||||
#include "tokens.h"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef __LISP_TOKENS_H__
|
||||
#define __LISP_TOKENS_H__
|
||||
#ifndef __ARCANE_SCHEME_LISP_TOKENS_H__
|
||||
#define __ARCANE_SCHEME_LISP_TOKENS_H__
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
|
Loading…
Reference in a new issue