summaryrefslogtreecommitdiff
path: root/Examples/guile/simple/Makefile
blob: da4eb90159c25524cd9385bc050c8cb59bafcf78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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