Skip to content

Commit

Permalink
Rename .fs to .fth.
Browse files Browse the repository at this point in the history
(To please GitHub.)
  • Loading branch information
larsbrinkhoff committed Jan 31, 2013
1 parent 2775860 commit 9302f8f
Show file tree
Hide file tree
Showing 15 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -16,9 +16,9 @@ kernel.o: kernel.c kernel.h forth.h

words.o: words.c kernel.h forth.h

kernel.c kernel.h: kernel.fs meta.lisp
kernel.c kernel.h: kernel.fth meta.lisp
$(LISP) --load meta.lisp \
--eval '(progn (compile-forth "kernel.fs") (quit))'
--eval '(progn (compile-forth "kernel.fth") (quit))'

clean:
rm -f forth *.o kernel.c kernel.h words.c
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions kernel.fs → kernel.fth
Expand Up @@ -8,10 +8,10 @@
( System implementation words. )

: boot ( -- )
\ s" boot.fs" included ;
s" core.fs" included
s" core-ext.fs" included
s" tools.fs" included
\ s" boot.fth" included ;
s" core.fth" included
s" core-ext.fth" included
s" tools.fth" included
quit ;

: 'here ( -- 'here ) C &HERE ;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9302f8f

Please sign in to comment.