summaryrefslogtreecommitdiff
path: root/doc/example-smob/Makefile
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2014-04-28 17:46:59 +0200
committerAndy Wingo <wingo@pobox.com>2014-04-28 17:46:59 +0200
commit9720934f3a88b68092b31e6f67056fd43780f52d (patch)
tree9f24efe73a7692d0e6ce45cef6fba0e29bd46085 /doc/example-smob/Makefile
parentd9a4a1cde13422a8e9656bb7745dc31692deb955 (diff)
downloadguile-9720934f3a88b68092b31e6f67056fd43780f52d.tar.gz
Remove doc/example-smob/
* doc/example-smob/: Remove example. It's smaller than it used to be in Guile 1.8, and with foreign objects there's practically nothing interesting to test. * doc/oldfmt.c: Remove this hoary thing. * doc/README: * doc/Makefile.am: Update.
Diffstat (limited to 'doc/example-smob/Makefile')
-rw-r--r--doc/example-smob/Makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/doc/example-smob/Makefile b/doc/example-smob/Makefile
deleted file mode 100644
index 3736dc01f..000000000
--- a/doc/example-smob/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-CFLAGS = `pkg-config guile-2.0 --cflags`
-LIBS = `pkg-config guile-2.0 --libs`
-
-O_FILES = image-type.o myguile.o
-
-all: myguile
-
-myguile: $(O_FILES)
- $(CC) $(O_FILES) $(LIBS) -o myguile
-
-clean:
- -rm -rf myguile $(O_FILES)