1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00
guile/doc/example-smob/Makefile
Jim Blandy 8e9fb89977 * Makefile (myguile): Fix link command, to put the Guile libraries
after the object files.  The old command worked on my machine, but
I don't see how.
1998-10-15 22:02:59 +00:00

12 lines
195 B
Makefile

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