added IFS ( Iterated Function System ) example from Reiser's book

This commit is contained in:
Norayr Chilingarian 2014-08-28 14:23:36 +04:00
parent 0b2f1902ef
commit 06fa950748
3 changed files with 119 additions and 0 deletions

16
src/test/x11/IFS/makefile Normal file
View file

@ -0,0 +1,16 @@
CFLAGS=-lX11
export CFLAGS
VOC = $(SETPATH) /opt/voc/bin/voc
all:
$(VOC) -s IFS.Mod IFStest.Mod -m
#$(VOC) -Cm test.Mod
#gcc -o test test.o -fPIC -g -I /opt/voc-1.0/src/lib/system/gcc/x86_64 -I /opt/voc-1.0/lib/voc/obj -lVishapOberon -L. -L/opt/voc-1.0/lib -lX11
clean:
rm *.c
rm *.h
rm *.sym
rm *.o