mirror of
https://github.com/false-schemers/skint.git
synced 2024-12-25 21:58:54 +01:00
make test target added; misc/test.scm
This commit is contained in:
parent
d989260f3e
commit
6ee96c8f71
2 changed files with 3083 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -42,7 +42,7 @@ ifeq ($(ARCH),AMD64)
|
|||
CFLAGS += -D NAN_BOXING
|
||||
endif
|
||||
|
||||
.PHONY: all clean realclean install uninstall
|
||||
.PHONY: all clean realclean test install uninstall
|
||||
|
||||
exe = ./skint
|
||||
|
||||
|
@ -60,6 +60,9 @@ objects = $(sources:%.c=%.o)
|
|||
|
||||
all: $(exe)
|
||||
|
||||
test:
|
||||
$(exe) misc/test.scm
|
||||
|
||||
clean:
|
||||
$(RM) $(objects)
|
||||
|
||||
|
|
3079
misc/test.scm
Normal file
3079
misc/test.scm
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue