mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
* .gitignore: * GUILE-VERSION (GUILE_EFFECTIVE_VERSION): * configure.ac: * doc/example-smob/Makefile (CFLAGS, LIBS): * doc/guile.1: * doc/ref/libguile-concepts.texi: * doc/ref/srfi-modules.texi: * doc/ref/vm.texi: * meta/Makefile.am (EXTRA_DIST, pkgconfig_DATA): * meta/guile-config.in (guile-module): * meta/guile-2.2-uninstalled.pc.in: * meta/guile-2.2.pc.in: Bump effective version to 2.2.
12 lines
222 B
Makefile
12 lines
222 B
Makefile
CFLAGS = `pkg-config guile-2.2 --cflags`
|
|
LIBS = `pkg-config guile-2.2 --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)
|