summaryrefslogtreecommitdiff
path: root/Examples/guile/constants/Makefile
blob: 946323b89b65fc78d90008a404ed5f5cce0e6c45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SRCS   = 
TARGET = my-guile
IFILE  = example.i
MKDIR  = ..

check: build
	./my-guile -s constants.scm

build:
	$(MAKE) -f $(MKDIR)/Makefile		\
		SRCS='$(SRCS)'			\
		TARGET=$(TARGET)		\
		IFILE=$(IFILE)			\
	    sub-all

clean:
	$(MAKE) -f $(MKDIR)/Makefile TARGET='$(TARGET)' guile_clean