1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 21:40:33 +02:00
guile/doc/example-smob/Makefile
Jim Blandy 90b714763e Created this directory for the Guile 1.3 release. Thanks to Jay
Glascoe for suggesting that we provide a complete, buildable
example!
* ChangeLog, Makefile, README, image-type.c, image-type.h,
myguile: New files.
1998-10-15 21:48:51 +00:00

12 lines
201 B
Makefile

CFLAGS=`guile-config compile`
LDFLAGS=`guile-config link`
O_FILES=image-type.o myguile.o
all: myguile
myguile: $(O_FILES)
$(CC) $(LDFLAGS) $(O_FILES) -o myguile
clean:
-rm -rf myguile $(O_FILES)