Created this directory for the Guile 1.3 release. Thanks to Jay
[bpt/guile.git] / doc / example-smob / Makefile
1 CFLAGS=`guile-config compile`
2 LDFLAGS=`guile-config link`
3
4 O_FILES=image-type.o myguile.o
5
6 all: myguile
7
8 myguile: $(O_FILES)
9 $(CC) $(LDFLAGS) $(O_FILES) -o myguile
10
11 clean:
12 -rm -rf myguile $(O_FILES)