- Now Guile examples are built in a consistent way to other target languages. - Also set GUILE_AUTO_COMPILE=0 to remove auto-compilation is enabled warnings
15 lines
400 B
Makefile
15 lines
400 B
Makefile
TOP = ../..
|
|
SWIG = $(TOP)/../preinst-swig
|
|
SRCS = example.c
|
|
TARGET = my-guile
|
|
INTERFACE = example.i
|
|
|
|
check: build
|
|
$(MAKE) -f $(TOP)/Makefile TARGET='$(TARGET)' guile_augmented_run
|
|
|
|
build:
|
|
$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
|
|
TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' guile_augmented
|
|
|
|
clean:
|
|
$(MAKE) -f $(TOP)/Makefile TARGET='$(TARGET)' guile_clean
|