mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 11:50:28 +02:00
12 lines
195 B
Makefile
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)
|