mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Rename sample application
This commit is contained in:
parent
bda81cec5b
commit
a3fbe3154e
3 changed files with 8 additions and 5 deletions
|
@ -1,11 +1,14 @@
|
|||
all: sample-app
|
||||
all: limited-scm-call-from-c sample-app2
|
||||
|
||||
sys.o: sys.c
|
||||
cc -g -c sys.c
|
||||
|
||||
sample-app: sample-app.scm sys.o
|
||||
cyclone -CLNK sys.o sample-app.scm
|
||||
limited-scm-call-from-c: limited-scm-call-from-c.scm sys.o
|
||||
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
|
||||
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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue