1
0
Fork 0

Rename project

This commit is contained in:
Alex Kotov 2023-05-05 18:15:43 +04:00
parent 6337d202d6
commit cc75cb60a3
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
9 changed files with 23 additions and 23 deletions

4
.gitignore vendored
View File

@ -1,4 +1,4 @@
/src/*.o
/lisp
/lisp-test
/arcane-scheme-lisp
/arcane-scheme-lisp-test

View File

@ -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

View File

@ -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"

View File

@ -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>

View File

@ -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"

View File

@ -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"

View File

@ -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>

View File

@ -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"

View File

@ -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>