diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-21 14:15:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-21 14:15:10 -0800 |
commit | 371d2635382eb0be35426983e7be5fed703024a6 (patch) | |
tree | 3b650a7db523257dd21c129ccbdd15305441adea /Makefile | |
parent | 213412b3e747e29bf885e15b269191d9edb06a0a (diff) | |
download | txr-371d2635382eb0be35426983e7be5fed703024a6.tar.gz txr-371d2635382eb0be35426983e7be5fed703024a6.tar.bz2 txr-371d2635382eb0be35426983e7be5fed703024a6.zip |
* Makefile (OBJS): new object file, rand.o.
* eval.c: Includes rand.h header.
(eval_init): New variable and functions from rand module registered.
* lib.c: Includes rand.h header.
(init): Call rand_init.
* rand.c: New file.
* rand.h: New file.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ endif # TXR objects OBJS := txr.o lex.yy.o y.tab.o match.o lib.o regex.o gc.o unwind.o stream.o -OBJS += arith.o hash.o utf8.o filter.o debug.o eval.o +OBJS += arith.o hash.o utf8.o filter.o debug.o eval.o rand.o # MPI objects MPI_OBJ_BASE=mpi.o mplogic.o |