mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 21:40:33 +02:00
Glascoe for suggesting that we provide a complete, buildable example! * ChangeLog, Makefile, README, image-type.c, image-type.h, myguile: New files.
12 lines
201 B
Makefile
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)
|