Rename sample application

This commit is contained in:
Justin Ethier 2020-08-09 18:04:04 -04:00
parent bda81cec5b
commit a3fbe3154e
3 changed files with 8 additions and 5 deletions

View file

@ -1,11 +1,14 @@
all: sample-app all: limited-scm-call-from-c sample-app2
sys.o: sys.c sys.o: sys.c
cc -g -c sys.c cc -g -c sys.c
sample-app: sample-app.scm sys.o limited-scm-call-from-c: limited-scm-call-from-c.scm sys.o
cyclone -CLNK sys.o sample-app.scm cyclone -CLNK sys.o limited-scm-call-from-c.scm
sample-app2: sample-app2.scm sys.o
cyclone -CLNK sys.o sample-app2.scm
.PHONY: clean .PHONY: clean
clean: clean:
rm -f *.o sample-app.c sample-app rm -f *.o limited-scm-call-from-c.c limited-scm-call-from-c sample-app2.c sample-app2

View file

@ -1 +1 @@
A sample application to demonstrate how to make simple, limited calls into Scheme code from C. See the code for more information. `limited-scm-call-from-c.scm` - A sample application to demonstrate how to make simple, limited calls into Scheme code from C. See the code for more information.