1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-06 09:30:29 +02:00

* 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.
This commit is contained in:
Jim Blandy 1998-10-15 22:02:59 +00:00
parent 8ff90e0474
commit 8e9fb89977

View file

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