/trunk/Examples/guile/constants/Makefile
Makefile | 17 lines | 14 code | 3 blank | 0 comment | 0 complexity | 771a7b000e17870488ba4188cc5f1cb7 MD5 | raw file
1SRCS = 2TARGET = my-guile 3IFILE = example.i 4MKDIR = .. 5 6all:: 7 $(MAKE) -f $(MKDIR)/Makefile \ 8 SRCS='$(SRCS)' \ 9 TARGET=$(TARGET) \ 10 IFILE=$(IFILE) \ 11 sub-all 12 13clean:: 14 $(MAKE) -f $(MKDIR)/Makefile TARGET='$(TARGET)' guile_clean 15 16check: all 17 ./my-guile -s constants.scm